@font-face {
  font-family: "open sans";
  font-weight: 300;
  font-display: block;
  src: url("../fonts/Open-Sans/OpenSans-Light.ttf");
}
@font-face {
  font-family: "open sans";
  font-weight: 400;
  font-display: block;
  src: url("../fonts/Open-Sans/OpenSans-Regular.ttf");
}
@font-face {
  font-family: "open sans";
  font-weight: 500;
  font-display: block;
  src: url("../fonts/Open-Sans/OpenSans-Medium.ttf");
}
@font-face {
  font-family: "open sans";
  font-weight: 600;
  font-display: block;
  src: url("../fonts/Open-Sans/OpenSans-Bold.ttf");
}
::-moz-selection {
  color: inherit;
  background-color: transparent;
}
::selection {
  color: inherit;
  background-color: transparent;
}

:root {
  --main-color:#5D4CC6;
  --second-color: #FAFAFA ;
}

*, ::after, ::before {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "open sans";
}

.page {
  min-height: 100vh;
  background-color: var(--second-color);
  padding: 20px;
}
@media (max-width: 767px) {
  .page {
    padding: 15px;
  }
}
@media (max-width: 575px) {
  .page {
    padding: 5px;
  }
}

.add {
  margin-top: 50px;
  padding: 12px 15px;
  background-color: white;
  margin-right: 30px;
  font-size: 11px;
  color: #b0b0b0;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
  border: 2px dashed #D8D8D8;
  cursor: pointer;
}
.add:hover {
  color: white;
  background-color: var(--main-color);
  border-color: var(--main-color);
}
.add span {
  flex: 1;
}

span {
  display: inline-block;
}

input, button {
  outline: none;
}

i {
  cursor: pointer;
}

header {
  cursor: default;
  position: relative;
}
header .left {
  cursor: pointer;
}
header .left .logo {
  position: relative;
  width: 30px;
  height: 30px;
}
header .left .logo span {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -2px;
  transform: translate(-50%);
}
header .left .logo::after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--main-color);
  z-index: 0;
  border-radius: 50%;
}
@media (max-width: 575px) {
  header .left .logo::after {
    width: 28px;
    height: 28px;
  }
}
header .left > span {
  position: relative;
  bottom: 3px;
}
header > i {
  color: #707070;
  line-height: 36px !important;
  margin-left: auto;
  margin-right: 10px;
  cursor: pointer;
}
header .center {
  position: relative;
  color: #B0B0B0;
  font-size: 14px;
  width: 200px;
  max-width: 100%;
  border-radius: 10px;
}
@media (max-width: 575px) {
  header .center {
    position: absolute;
    height: 32px;
    left: 50%;
    transform: translate(-50%);
    border: 1px solid #bebebe;
  }
  header .center.hidden {
    display: none;
  }
}
header .center input {
  border: none;
  padding: 4px 12px;
  width: 100%;
  height: 100%;
}
header .center input::-webkit-search-cancel-button {
  -webkit-appearance: none;
          appearance: none;
}
header .center input::-moz-selection {
  color: white;
  background-color: var(--main-color);
}
header .center input::selection {
  color: white;
  background-color: var(--main-color);
}
header .center input:focus::-moz-placeholder {
  color: transparent;
}
header .center input:focus:-ms-input-placeholder {
  color: transparent;
}
header .center input:focus::placeholder {
  color: transparent;
}
header .center input::-moz-placeholder {
  color: #B0B0B0;
  font-size: 12px;
}
header .center input:-ms-input-placeholder {
  color: #B0B0B0;
  font-size: 12px;
}
header .center input::placeholder {
  color: #B0B0B0;
  font-size: 12px;
}
header .center button {
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background-color: transparent;
  color: inherit;
}
header .right {
  color: #B0B0B0;
}
header .right img {
  width: 35px;
  cursor: pointer;
}
@media (max-width: 575px) {
  header .right img {
    width: 25px;
    cursor: pointer;
  }
}
header .right P {
  margin: 0;
  font-size: 10px;
}
header .right P:first-child {
  font-weight: 500;
  font-size: 12px;
  margin-bottom: -2px;
  color: #464A53;
}
@media (max-width: 575px) {
  header .right P {
    display: none;
  }
}
@media (max-width: 575px) {
  header .right i {
    display: none;
  }
}

main {
  height: 75vh;
  position: relative;
}
main .left {
  min-width: 150px;
  padding-top: 60px;
}
@media (max-width: 575px) {
  main .left {
    width: 48px;
    min-width: 48px;
    overflow: hidden;
  }
}
main .left .sections .sec {
  padding: 12px 15px;
  border-radius: 15px 0 0 15px;
  margin-top: 30px;
  margin-bottom: 30px;
  cursor: pointer;
}
@media (max-width: 575px) {
  main .left .sections .sec {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
main .left .sections .sec.selected {
  background-color: white;
}
main .left .sections .sec:hover {
  background-color: white;
}
@media (max-width: 575px) {
  main .left .add {
    padding: 5px;
    display: block;
    width: 30px;
    border-radius: 50% !important;
    text-align: center;
    margin-left: 10px;
  }
}
main .center {
  flex-grow: 1;
  background-color: #fff;
}
@media (max-width: 767px) {
  main .center {
    border-radius: 20px 0 0 20px !important;
  }
}
main .center img:first-of-type {
  max-width: 320px;
  min-height: 50%;
  min-width: 33%;
}
main .center img:last-of-type {
  max-width: 450px;
  top: 25%;
  right: 80px;
}
@media (max-width: 1199px) {
  main .center img:last-of-type {
    max-width: 380px;
    right: 50px;
  }
}
main .center .content {
  z-index: 15;
  margin-left: 60px;
}
main .center .content p {
  font-size: 14px;
}
main .center .content h1 {
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 60px;
  line-height: 60px;
}
@media (max-width: 767px) {
  main .center .content h1 br {
    display: none;
  }
}
main .center .content div p {
  color: #A2A4A9;
  width: 300px;
  max-width: 100%;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 35px;
}
main .center .content span {
  color: white;
  font-size: 11px;
  padding: 10px 35px;
  background-color: var(--main-color);
  cursor: pointer;
}
@media (max-width: 575px) {
  main .center .content {
    margin-left: 20px;
  }
  main .center .content h1 {
    font-size: 35px;
    line-height: 45px;
  }
  main .center .content span {
    font-size: 9px;
    padding: 10px 20px;
  }
}
@media (max-width: 991px) {
  main .center > img {
    display: none;
  }
}
main .right {
  min-width: 150px;
  padding-left: 20px;
  padding-top: 45px;
  background-color: var(--second-color);
}
@media (max-width: 767px) {
  main .right {
    display: none;
  }
  main .right.opened {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: 20;
    border-left: 3px solid #ddd;
  }
}

.popup {
  padding: 15px 20px;
  background-color: #fff;
  width: calc(100% - 300px);
  min-width: 190px;
  margin: auto;
  margin-top: 30px;
}
.popup img {
  height: 15px;
}
.popup img:nth-child(1) {
  margin-right: auto;
}
.popup img:nth-child(5) {
  margin-left: auto;
  cursor: pointer;
}
.popup img:nth-child(2), .popup img:nth-child(3), .popup img:nth-child(4) {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .popup img:nth-child(2), .popup img:nth-child(3), .popup img:nth-child(4) {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 991px) {
  .popup img:nth-child(2), .popup img:nth-child(3), .popup img:nth-child(4) {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.popup img:nth-child(3) {
  border-left: 1px solid #D8D8D8;
  border-right: 1px solid #D8D8D8;
}
@media (max-width: 991px) {
  .popup img {
    height: 10px;
  }
}
@media (max-width: 767px) {
  .popup img {
    height: 8px;
  }
  .popup img:nth-child(4) {
    display: none;
  }
  .popup img:nth-child(3) {
    border-left: 1px solid #D8D8D8;
    border-right: none;
  }
}
@media (max-width: 575px) {
  .popup img:nth-child(3) {
    display: none;
  }
}
.popup.closed {
  display: none !important;
}/*# sourceMappingURL=main.css.map */