@charset "utf-8";
/* CSS Document */

/************ Variables *************/
:root {
  --orange: #D5A528;
  --red: #ad2d2d;
  --light-green: #4EDC49;
  --green: #FF906A;
  --white: #FFFFFF;
  --black: #000000;
  --grey: #8F8F8F;
  --light-grey: #E1E1E1;
  --background-grey: #F4F4F4; 
  --background-black: #323232;
  --light-blue: #0C99FD;
  --blue: #2659B1;
  --primary-color: #68D2DF;
  --primary-text: var(--black);
  --button-text: var(--black);
  --secondary-button-text: var(--white);
  --primary-background: var(--white);
  --accent-background: var(--background-grey);
}

/*********************** General ************************/
html {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  -ms-text-size-adjust: 100%;
}

html, body {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--accent-background);
  font-size: 16px;
  line-height: 1.4;
  color: var(--primary-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* width */
body::-webkit-scrollbar {
  width: 6px;
}
  
/* Track */
body::-webkit-scrollbar-track {
  background: var(--primary-background);
}
  
/* Handle */
body::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

@media (max-width: 600px) {
  body::-webkit-scrollbar,
  body::-webkit-scrollbar-track,
  body::-webkit-scrollbar-thumb {
    display: none;
  }
}

.red { background-color: var(--red) !important; }
.orange { background-color: var(--orange) !important; }
.light_green { background-color: var(--light-green) !important; }
.green { background-color: var(--green) !important; }
.light_blue { background-color: var(--light-blue) !important; }
.blue { background-color: var(--blue) !important; }

/*********************** Wrappers ************************/
.wrapper_large, .wrapper_small {
  position: relative;
  max-width: 80%;
  margin: 0 auto;
}

.wrapper_large {
  width: 1500px;
}

.wrapper_small {
  max-width: 45%;
  width: 750px;
}

@media (max-width: 1200px) {
  .wrapper_large {
    max-width: 90%;
  }

  .wrapper_small {
    max-width: 60%;
  }
}

@media (max-width: 950px) {
  .wrapper_small {
    max-width: 75%;
  }
}

@media (max-width: 650px) {
  .wrapper_large,
  .wrapper_small {
    max-width: calc(100% - 20px);
  }
}

.page {
  width: 100%;
}

/*********************** Fonts ************************/
h1, h2, h3, h4 {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  color: var(--primary-text);
}

h1 {
  font-size: 60px;
  margin-top: 0;
  text-align: center;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

@media (max-width: 650px) {
  h1 {
    font-size: 44px;
    text-align: center;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 24px;
  }
}

p {
  font-size: 16px;
  line-height: 1.6;
}

ul, li {
  list-style: none;
  padding-inline-start: 0px;
  font-size: 16px;
}

a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/*********************** Buttons ************************/
.buttons_container {
  display: flex;
  align-items: stretch;
}

.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  padding: 0 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 46px;
  background-color: var(--primary-color);
  text-align: center;
  color: var(--button-text);
  font-size: 16px;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  border: none;
  outline: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: capitalize;
  opacity: 1;
  box-sizing: border-box;
  transition: 0.1s all ease-in-out;
}

.button_2 {
  background-color: var(--accent-background);
  color: var(--secondary-button-text);
}

.button i,
button i,
input[type="submit"] i,
input[type="reset"] i,
input[type="button"] i {
  margin-right: 10px;
}

.button:hover, button:hover, input[type="submit"]:hover, .button3:hover {
  opacity: 0.9;
  transition: 0.15s all ease-in-out;
}

.button:active, button:active, input[type="submit"]:active, .button3:active {
	transform: scale(0.96);
	background-position: 500px;
  transition: 0.1s all ease-in-out;
  outline: none;
}

.square_button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 46px;
  width: 46px;
  background-color: var(--primary-color);
  color: var(--button-text);
  border: none;
  outline: none;
  border-radius: 5px;
  cursor: pointer;
  opacity: 1;
  box-sizing: border-box;
  transition: 0.1s all ease-in-out;
}

.like_button {
  background-color: var(--red);
  color: var(--white);
}

.edit_button {
  background-color: var(--orange);
  color: var(--white);
}

.square_button:hover {
  opacity: 0.93;
  transition: 0.15s all ease-in-out;
}

.square_button:active {
	transform: scale(0.96);
	background-position: 500px;
  transition: 0.1s all ease-in-out;
  outline: none;
}