:root, [data-theme="default"] {
  --font-family:              Roboto, sans-serif;
  --color-white:              white;
  --color-whiter:             #e0f4f7;
  --color-whiter-light:       #fafdf9;
  --color-black:              #070707;
  --color-grey:               #e1e9df;
  --color-primary:            #007c8a;
  --color-secondary:          #555760;
  --color-orange:             #f9b52e;
  --color-red:                #ee4242;
  --color-red-light:          #fdeff0;
  --color-green:              #39af64;
  --color-blue:               #73bcfb;
  --color-blue-light:         #f2f1fb;
  --color-facebook:           #245eaa;
  --color-google:             #e24a2f;
  --color-behance:            #1767fc;
  --color-dribble:            #ee4a89;
  --color-instagram:          #ffab02;
  --color-placeholder:        #a5aebc;
  --color-paragraph:          #83a1a5;
  --color-border:             #638287;
}

.nav-btn {
  width: 28px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  right: 0;
  z-index: 0;
  padding: 0;
  border: none;
}

@media only screen and (min-width: 992px) {
  .nav-btn {
    display: none;
  }
}

.nav-btn span {
  display: block;
  border-radius: 100px;
  height: 3px;
  background-color: var(--color-white);
  margin-bottom: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.nav-btn span:last-child {
  margin-bottom: 0;
}

.nav-btn span:nth-child(2) {
  margin-left: 6px;
}

.nav-btn:hover span:nth-child(2) {
  margin-left: 0;
}

.nav-btn[aria-expanded="true"] span {
  height: 4px;
}

.nav-btn[aria-expanded="true"] span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 9px;
}

.nav-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-btn[aria-expanded="true"] span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 9px;
}

.nav-btn.nav-ham {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  width: 49px;
  height: 49px;
  padding: 12px;
}

.nav-btn.nav-ham span {
  height: 4px;
}

.nav-btn.nav-ham span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 9px;
}

.nav-btn.nav-ham span:nth-child(2) {
  opacity: 0;
}

.nav-btn.nav-ham span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 9px;
}

.container {
  position: relative;
  max-width: 1200px;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .login-btn {
  margin-left: auto;
}

header .login-btn a {
  font-size: 17px;
  font-weight: 400;
  color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

header .login-btn a svg {
  margin-right: 7px;
}

header .login-btn a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

header .login-btn a:hover svg path {
  fill: var(--color-primary);
}

header .login-dd {
  margin-left: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

header .login-dd .login-dd-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

header .login-dd .login-dd-btn .user-icon {
  margin-right: 8px;
}

header .login-dd .login-dd-btn .username {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 87px;
}

header .login-dd .login-dd-btn .arrow {
  margin-left: 10px;
}

header .login-dd .dropdown-menu {
  -webkit-transition: initial;
  transition: initial;
  padding: 15px;
  border-radius: 15px;
  min-width: 200px;
}

header .login-dd .dropdown-menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  color: var(--color-black);
  line-height: 35px;
}

header .login-dd .dropdown-menu li a .icon {
  width: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
}

header .login-dd .dropdown-menu li.active a {
  color: var(--color-primary);
}

header .login-dd .dropdown-menu li.active a .icon svg path {
  fill: var(--color-primary);
}

.hero-sec {
  background-color: var(--color-whiter);
  margin-bottom: 20px;
  padding: 60px;
  padding-right: 560px;
  padding-bottom: 90px;
  position: relative;
}

@media only screen and (max-width: 1149px) {
  .hero-sec {
    padding: 30px;
    padding-right: 440px;
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-sec {
    padding-right: 380px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-sec {
    padding: 30px;
    text-align: center;
  }
}

.hero-sec h1 {
  font-size: 54px;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 20px;
  line-height: 70px;
}

@media only screen and (max-width: 991px) {
  .hero-sec h1 {
    font-size: 40px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-sec h1 {
    text-align: center;
    font-size: 30px;
    line-height: 40px;
  }
}

.hero-sec h1 span {
  font-size: 38px;
  font-weight: 300;
  color: var(--color-black);
  margin-bottom: 10px;
}

@media only screen and (max-width: 991px) {
  .hero-sec h1 span {
    font-size: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-sec h1 span {
    font-size: 25px;
  }
}

.hero-sec h2 {
  font-size: 30px;
  font-weight: 300;
  color: var(--color-black);
  margin-bottom: 30px;
  line-height: 41px;
}

@media only screen and (max-width: 991px) {
  .hero-sec h2 {
    font-size: 23px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-sec h2 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 20px;
    text-align: center;
  }
}

.hero-sec .like-comp-more {
  font-size: 25px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .hero-sec .like-comp-more {
    font-size: 22px;
    margin-bottom: 13px;
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .hero-sec .btn.custom--btn {
    margin: 0 auto;
  }
}

.hero-sec .drag-drop-sec {
  position: absolute;
  right: 150px;
  top: 0;
}

@media only screen and (max-width: 1149px) {
  .hero-sec .drag-drop-sec {
    right: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-sec .drag-drop-sec {
    position: relative;
    right: 0;
  }
}

.hero-sec .drag-drop-sec .drag-drop-sec-inner {
  padding: 65px 49px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: default;
}

@media only screen and (max-width: 1149px) {
  .hero-sec .drag-drop-sec .drag-drop-sec-inner {
    background-color: rgba(202, 231, 234, 0.55);
    border-radius: 0 0 500px 500px;
    border: 1px dashed var(--color-border);
  }
}

@media only screen and (max-width: 991px) {
  .hero-sec .drag-drop-sec .drag-drop-sec-inner {
    padding: 25px 40px 45px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-sec .drag-drop-sec .drag-drop-sec-inner {
    border-radius: 15px;
    margin-bottom: 15px;
  }
}

.hero-sec .drag-drop-sec .drag-drop-sec-inner::before {
  content: '';
  background-color: rgba(202, 231, 234, 0.55);
  border-radius: 500px;
  border: 1px dashed var(--color-border);
  width: 100%;
  height: 700px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

@media only screen and (max-width: 1149px) {
  .hero-sec .drag-drop-sec .drag-drop-sec-inner::before {
    display: none;
  }
}

.hero-sec .drag-drop-sec .drag-drop-sec-inner .dragdrop-inner-image {
  position: absolute;
  right: -109px;
  bottom: -55px;
}

@media only screen and (max-width: 1149px) {
  .hero-sec .drag-drop-sec .drag-drop-sec-inner .dragdrop-inner-image {
    right: -29px;
    bottom: -33px;
    max-width: 130px;
  }
}

.hero-sec .drag-drop-sec .drag-drop-sec-inner .dragdrop-inner-image img {
  max-width: 100%;
  height: auto;
}

.hero-sec .drag-drop-sec .drag-drop-sec-inner .drag-image {
  position: relative;
  z-index: 0;
}

@media only screen and (max-width: 991px) {
  .hero-sec .drag-drop-sec .drag-drop-sec-inner .drag-image {
    max-width: 170px;
  }
  .hero-sec .drag-drop-sec .drag-drop-sec-inner .drag-image img {
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .hero-sec .drag-drop-sec .drag-drop-sec-inner .drag-image {
    max-width: 100px;
  }
}

.hero-sec .drag-drop-sec .drag-drop-sec-inner .drag-upto {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-border);
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  z-index: 0;
}

@media only screen and (max-width: 991px) {
  .hero-sec .drag-drop-sec .drag-drop-sec-inner .drag-upto {
    margin-bottom: 15px;
  }
}

.hero-sec .drag-drop-sec .drag-drop-sec-inner .drag-drop-text {
  font-size: 38px;
  font-weight: 300;
  color: var(--color-black);
  line-height: 44px;
  text-align: center;
  position: relative;
  z-index: 0;
}

@media only screen and (max-width: 991px) {
  .hero-sec .drag-drop-sec .drag-drop-sec-inner .drag-drop-text {
    font-size: 28px;
    line-height: 34px;
  }
}

.hero-sec .drag-drop-sec .drag-drop-sec-inner .drag-drop-text span {
  font-size: 28px;
  font-weight: 900;
  color: var(--color-primary);
}

@media only screen and (max-width: 991px) {
  .hero-sec .drag-drop-sec .drag-drop-sec-inner .drag-drop-text span {
    font-size: 21px;
  }
}

.hero-content {
  background-color: var(--color-whiter);
  padding: 25px;
  margin-bottom: 20px;
}

.hero-content.her-save-dir {
  padding: 45px 35px;
}

.hero-content .hero-main-title {
  font-size: 34px;
  color: var(--color-black);
  font-weight: 400;
  margin-bottom: 10px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .hero-content .hero-main-title {
    font-size: 24px;
    line-height: 1;
  }
}

.hero-content .hero-main-title span {
  font-weight: 900;
}

.hero-content .hero-sub-title {
  font-size: 20px;
  color: var(--color-black);
  font-weight: 300;
  margin-bottom: 35px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .hero-content .hero-sub-title {
    font-size: 17px;
    margin-bottom: 20px;
  }
}

.hero-content .hero-text-sec {
  min-height: calc(100% - 25px);
  margin-bottom: 25px;
  padding: 20px;
  background-color: var(--color-white);
  border: 1px dashed var(--color-border);
  border-radius: 15px;
}

.hero-content .hero-text-sec h3 {
  font-size: 18px;
  color: var(--color-black);
  font-weight: 500;
  margin-bottom: 10px;
}

.hero-content .hero-text-sec p {
  font-size: 15px;
  color: var(--color-black);
  font-weight: 400;
  line-height: 23px;
  margin-bottom: 0;
}

.hero-content .hero-mini-title {
  font-size: 24px;
  color: var(--color-black);
  font-weight: 400;
  margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
  .hero-content .hero-mini-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

.hero-content .hero-mini-desc {
  font-size: 15px;
  color: var(--color-black);
  font-weight: 400;
  line-height: 23px;
  margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
  .hero-content .hero-mini-desc {
    font-size: 14px;
  }
}

.hero-content .hero-mini-desc span {
  font-weight: 700;
}

.hero-content .vs-images-sec {
  margin-bottom: 25px;
  padding: 20px;
  background-color: var(--color-white);
  border: 1px dashed var(--color-border);
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-content .vs-images-sec .vs-images-vs {
  width: 90px;
  text-align: center;
  font-size: 38px;
  font-weight: 900;
  color: var(--color-black);
}

@media only screen and (max-width: 767px) {
  .hero-content .vs-images-sec .vs-images-vs {
    width: 60px;
    font-size: 23px;
  }
}

.hero-content .vs-images-sec .vs-images-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-content .vs-images-sec .vs-images-main .vs-images-main-img {
  margin-bottom: 25px;
}

.hero-content .vs-images-sec .vs-images-main .vs-images-main-img img {
  max-width: 100%;
  height: auto;
}

.hero-content .vs-images-sec .vs-images-main .vs-images-main-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-black);
  line-height: 23px;
}

.hero-content .vs-images-sec .vs-images-main .vs-images-main-text span {
  color: var(--color-primary);
}

.hero-content .screen-img {
  margin-bottom: 25px;
}

.hero-content .screen-img img {
  max-width: 100%;
  height: auto;
}

.hero-content .screen-img-content h3 {
  font-size: 34px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .hero-content .screen-img-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

.hero-content .screen-img-content p {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-black);
  line-height: 28px;
  margin-bottom: 35px;
}

@media only screen and (max-width: 767px) {
  .hero-content .screen-img-content p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 25px;
  }
}

.hero-content .screen-img-content p:last-child {
  margin-bottom: 0;
}

.hero-content .trusted-logos-sec h3 {
  font-size: 34px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 45px;
}

@media only screen and (max-width: 767px) {
  .hero-content .trusted-logos-sec h3 {
    font-size: 24px;
    margin-bottom: 25px;
  }
}

.hero-content .trusted-logos-sec .trusted-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 991px) {
  .hero-content .trusted-logos-sec .trusted-logos {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media only screen and (max-width: 767px) {
  .hero-content .trusted-logos-sec .trusted-logos div {
    max-width: 120px;
  }
}

.hero-content .trusted-logos-sec .trusted-logos div img {
  max-width: 100%;
  height: auto;
}

.col-ads {
  margin-bottom: 25px;
}

.col-ads img {
  max-width: 100%;
  height: auto;
}

.row-ads {
  margin-bottom: 25px;
  text-align: center;
}

.row-ads img {
  max-width: 100%;
  height: auto;
}

.col-pro-sec {
  margin-bottom: 65px;
  padding: 20px;
  background-color: var(--color-white);
  border: 1px dashed var(--color-border);
  border-radius: 15px;
  position: relative;
}

.col-pro-sec .bona {
  position: absolute;
  right: 0;
  bottom: -50px;
}

.col-pro-sec .bona img {
  max-width: 100%;
  height: auto;
}

.col-pro-sec h4 {
  font-size: 27px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 18px;
}

@media only screen and (max-width: 767px) {
  .col-pro-sec h4 {
    font-size: 22px;
    margin-bottom: 10px;
  }
}

.col-pro-sec p {
  font-size: 17px;
  font-weight: 400;
  color: var(--color-black);
  line-height: 32px;
  margin-bottom: 24px;
}

@media only screen and (max-width: 767px) {
  .col-pro-sec p {
    font-size: 14px;
    line-height: 25px;
  }
}

.col-pro-sec .col-pro-btn {
  line-height: 44px;
  font-weight: 700;
  font-size: 25px;
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
}

footer .copyright-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
}

footer .copyright-text a {
  color: var(--color-white);
}

footer .footer-social {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footer-social a {
  border: 2px solid var(--color-border);
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 36px;
  height: 36px;
  margin-right: 10px;
}

footer .footer-social a:last-child {
  margin-right: 0;
}

.hero-uploader-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media only screen and (max-width: 767px) {
  .hero-uploader-sec {
    padding: 20px 0 0 0;
  }
}

.hero-uploader-sec .hero-uploader-row {
  background-color: var(--color-white);
  border: 1px dashed var(--color-border);
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 15px;
}

.hero-uploader-sec .uploader-filename-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 6px;
}

.hero-uploader-sec .uploader-filename-sec .uploader-filename {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 1%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
}

.hero-uploader-sec .uploader-filename-sec .uploader-right-text {
  margin-left: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.hero-uploader-sec .uploader-filename-sec .uploader-right-text .uploader-download-btn {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-green);
}

.hero-uploader-sec .uploader-filename-sec .uploader-right-text .uploader-gopro-btn {
  font-size: 16px;
  font-weight: 500;
  color: #4A29FF;
  text-decoration: underline;
}

.hero-uploader-sec .uploader-filename-sec .uploader-right-text .uploader-download-percent {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
  margin-right: 10px;
}

.hero-uploader-sec .uploader-prog-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-uploader-sec .uploader-prog-sec .file-prog-right-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin-left: 12px;
}

.hero-uploader-sec .uploader-prog-sec .file-prog-left-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin-right: 12px;
}

.hero-uploader-sec .uploader-prog-sec .file-prog {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 1%;
}

.hero-uploader-sec .uploader-prog-sec .file-prog .file-prog-inner {
  height: 19px;
  line-height: 17px;
  border-radius: 100px;
  background-color: var(--color-black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-uploader-sec .uploader-prog-sec .file-prog .file-prog-inner div {
  position: absolute;
  z-index: 0;
  background: var(--color-primary);
  height: 19px;
  border-radius: 100px;
}

.hero-uploader-sec .uploader-prog-sec .file-prog .file-prog-inner div.compressing {
  background: #8775EB;
}

.hero-uploader-sec .uploader-prog-sec .file-prog .file-prog-inner div.to-large {
  background: #AF3939;
}

.hero-uploader-sec .uploader-prog-sec .file-prog .file-prog-inner div.finished {
  background: var(--color-green);
}

.hero-uploader-sec .uploader-prog-sec .file-prog .file-prog-inner span {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

.hero-uploader-sec .hero-uploader-down-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
}

@media only screen and (max-width: 991px) {
  .hero-uploader-sec .hero-uploader-down-sec {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.hero-uploader-sec .hero-uploader-down-sec .saved-total-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black);
}

@media only screen and (max-width: 991px) {
  .hero-uploader-sec .hero-uploader-down-sec .saved-total-text {
    margin-bottom: 15px;
  }
}

.hero-uploader-sec .hero-uploader-down-sec .saved-total-text span {
  font-size: 21px;
  font-weight: 700;
  color: var(--color-primary);
}

.hero-uploader-sec .hero-uploader-down-sec .hero-uploader-down-btn {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 991px) {
  .hero-uploader-sec .hero-uploader-down-sec .hero-uploader-down-btn {
    margin-left: 0;
    margin-right: auto;
  }
}

@media only screen and (max-width: 767px) {
  .hero-uploader-sec .hero-uploader-down-sec .hero-uploader-down-btn {
    margin-left: auto;
  }
}

.hero-uploader-sec .hero-uploader-down-sec .hero-uploader-down-btn svg {
  margin-right: 10px;
}

.pro-section {
  padding: 5px 0 30px 0;
}

.pro-section .pro-sec-left {
  border-radius: 15px;
  border: 1px dashed var(--color-white);
  min-height: 100%;
  padding: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media only screen and (max-width: 767px) {
  .pro-section .pro-sec-left {
    padding: 25px;
    margin-bottom: 20px;
  }
}

.pro-section .pro-sec-left h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 28px;
}

@media only screen and (max-width: 767px) {
  .pro-section .pro-sec-left h3 {
    font-size: 25px;
    margin-bottom: 20px;
  }
}

.pro-section .pro-sec-left h4 {
  font-size: 23px;
  font-weight: 400;
  color: var(--color-whiter);
  margin-bottom: 18px;
}

@media only screen and (max-width: 767px) {
  .pro-section .pro-sec-left h4 {
    font-size: 20px;
  }
}

.pro-section .pro-sec-left ul {
  margin: 0 0 0 20px;
  padding: 0;
  list-style-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath id='Polygon_1' data-name='Polygon 1' d='M7,0,9.1,4.7l4.9.648L10.4,8.9l.928,5.1L7,11.5,2.674,14,3.6,8.9,0,5.348,4.9,4.7Z' fill='%23007c8a'/%3E%3C/svg%3E%0A");
}

.pro-section .pro-sec-left ul li {
  color: var(--color-paragraph);
  font-size: 16px;
  font-weight: 400;
  line-height: 39px;
  padding-left: 10px;
}

@media only screen and (max-width: 767px) {
  .pro-section .pro-sec-left ul li {
    line-height: 28px;
  }
}

.pro-section .pro-sec-right {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767px) {
  .pro-section .pro-sec-right {
    padding: 20px 0 15px;
  }
}

.pro-section .pro-sec-right .pro-sec-price {
  font-size: 55px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 15px;
  color: var(--color-white);
}

@media only screen and (max-width: 767px) {
  .pro-section .pro-sec-right .pro-sec-price {
    font-size: 45px;
    margin-bottom: 10px;
  }
}

.pro-section .pro-sec-right .pro-sec-desc {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 48px;
  color: var(--color-paragraph);
}

@media only screen and (max-width: 767px) {
  .pro-section .pro-sec-right .pro-sec-desc {
    font-size: 17px;
    margin-bottom: 28px;
  }
}

.pro-section .pro-sec-right .pro-sec-buy-btn {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  background-color: var(--color-green);
  padding-left: 77px;
  padding-right: 77px;
}

@media only screen and (max-width: 767px) {
  .pro-section .pro-sec-right .pro-sec-buy-btn {
    font-size: 25px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.signup-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media only screen and (max-width: 767px) {
  .signup-sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.signup-sec .signup-sec-left, .signup-sec .signup-sec-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.signup-sec h1 {
  font-size: 34px;
  font-weight: 900;
  color: var(--color-black);
  margin-bottom: 10px;
}

.signup-sec h2 {
  font-size: 20px;
  font-weight: 300;
  color: var(--color-black);
  margin-bottom: 30px;
}

.signup-sec .signup-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.signup-sec .signup-social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  font-size: 21px;
  font-weight: 700;
  border-radius: 100px;
  background-color: var(--color-black);
  color: var(--color-white);
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.signup-sec .signup-social a span {
  margin-left: 13px;
}

.signup-sec .signup-social a.facebook {
  background-color: var(--color-facebook);
}

.signup-sec .signup-social a.google {
  background-color: var(--color-google);
}

.signup-sec .signup-social a:hover {
  text-decoration: none;
  opacity: .8;
}

.signup-sec .signup-sec-center {
  width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media only screen and (max-width: 767px) {
  .signup-sec .signup-sec-center {
    width: 100%;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 15px;
  }
}

.signup-sec .signup-sec-center .signup-line {
  width: 1px;
  height: 100%;
  background-color: var(--color-border);
  position: relative;
}

@media only screen and (max-width: 767px) {
  .signup-sec .signup-sec-center .signup-line {
    width: 100%;
    height: 1px;
  }
}

.signup-sec .signup-sec-center .signup-line .signup-or {
  width: 25px;
  height: 25px;
  line-height: 22px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-border);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 100px;
}

.setting-top-sec {
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  border-radius: 15px;
  margin-bottom: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .setting-top-sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.setting-top-sec .user-email-sec {
  background-color: var(--color-border);
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 265px;
}

@media only screen and (max-width: 767px) {
  .setting-top-sec .user-email-sec {
    width: 100%;
    padding: 10px 15px;
  }
}

.setting-top-sec .user-email-sec .user-icon {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background-color: var(--color-white);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-right: 12px;
}

@media only screen and (max-width: 767px) {
  .setting-top-sec .user-email-sec .user-icon {
    width: 35px;
    height: 35px;
  }
}

.setting-top-sec .user-email-sec .user-text-email {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 1%;
}

.setting-top-sec .user-email-sec .user-text-email .setting-username {
  font-size: 19px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 3px;
  line-height: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.setting-top-sec .user-email-sec .user-text-email .setting-useremail {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.setting-top-sec .setting-nav-sec {
  width: 1%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 25px;
}

@media only screen and (max-width: 767px) {
  .setting-top-sec .setting-nav-sec {
    width: 100%;
    padding: 20px;
  }
}

.setting-top-sec .setting-nav-sec a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  font-weight: 400;
  color: var(--color-black);
  margin-right: 25px;
}

@media only screen and (max-width: 991px) {
  .setting-top-sec .setting-nav-sec a {
    font-size: 18px;
    margin-right: 17px;
  }
}

@media only screen and (max-width: 639px) {
  .setting-top-sec .setting-nav-sec a {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (max-width: 991px) {
  .setting-top-sec .setting-nav-sec a svg {
    width: 19px;
    max-height: 19px;
  }
}

@media only screen and (max-width: 639px) {
  .setting-top-sec .setting-nav-sec a svg {
    width: initial;
    max-height: initial;
  }
}

.setting-top-sec .setting-nav-sec a span {
  margin-left: 10px;
}

@media only screen and (max-width: 639px) {
  .setting-top-sec .setting-nav-sec a span {
    display: none;
  }
}

.setting-top-sec .setting-nav-sec a.logout {
  color: var(--color-red);
}

.setting-top-sec .setting-nav-sec a:hover, .setting-top-sec .setting-nav-sec a:active, .setting-top-sec .setting-nav-sec a.active {
  color: var(--color-primary);
  text-decoration: none;
}

.setting-top-sec .setting-nav-sec a:hover svg path, .setting-top-sec .setting-nav-sec a:active svg path, .setting-top-sec .setting-nav-sec a.active svg path {
  fill: var(--color-primary);
}

.setting-main-title h1 {
  font-size: 34px;
  font-weight: 400;
  color: var(--color-black);
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .setting-main-title h1 {
    font-size: 25px;
  }
}

.setting-main-title h1.invoice-subtitle {
  font-size: 24px;
  font-weight: 400;
}

@media only screen and (max-width: 767px) {
  .setting-main-title h1.invoice-subtitle {
    font-size: 18px;
  }
}

.setting-main-title h1.black-bold {
  font-size: 34px;
  font-weight: 900;
}

@media only screen and (max-width: 991px) {
  .setting-main-title h1.black-bold {
    font-size: 30px;
  }
}

.setting-main-title h2 {
  font-size: 20px;
  font-weight: 300;
  color: var(--color-black);
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .setting-main-title h2 {
    font-size: 17px;
  }
}

.setting-browse-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 15px;
}

.setting-browse-sec .setting-browse-image {
  width: 70px;
  height: 70px;
  margin-right: 30px;
  background-color: var(--color-black);
  border-radius: 100px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.setting-browse-sec .setting-browse-btn {
  position: relative;
}

.setting-browse-sec .setting-browse-btn label {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
  background-color: var(--color-black);
  border-radius: 100px;
  line-height: 35px;
  padding: 0 20px;
  cursor: pointer;
}

.setting-browse-sec .setting-browse-btn input {
  position: absolute;
  width: 0;
  height: 0;
  visibility: hidden;
  opacity: 0;
}

.setting-table-main {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  margin-bottom: 25px;
  border-radius: 15px;
}

.setting-table-main .table > :not(caption) > * > * {
  padding: 11px 20px;
}

.setting-table-main .table-responsive {
  min-height: 200px;
}

.setting-table-main .file-options-main {
  position: relative;
  float: right;
}

.setting-table-main .file-options-main .file-options {
  width: 30px;
  height: 30px;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  background-color: var(--color-black);
}

.setting-table-main .file-options-main .file-options svg circle {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.setting-table-main .file-options-main .file-options:hover svg circle, .setting-table-main .file-options-main .file-options:focus svg circle, .setting-table-main .file-options-main .file-options:active svg circle {
  fill: var(--color-secondary);
}

.setting-table-main .file-options-main .dropdown-menu {
  min-width: 200px;
  left: auto !important;
  right: 100% !important;
  -webkit-transform: translate(0) !important;
          transform: translate(0) !important;
  top: 0% !important;
  border-radius: 0;
  border: 1px solid var(--color-border);
  margin-right: 0 !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 15px;
  border-radius: 15px;
}

@media only screen and (max-width: 991px) {
  .setting-table-main .file-options-main .dropdown-menu {
    width: 320px;
    padding: 10px;
    padding-left: 5px;
    top: -11px !important;
    height: 52px;
  }
}

.setting-table-main .file-options-main .dropdown-menu li {
  padding: 0;
  font-weight: 500;
}

@media only screen and (max-width: 991px) {
  .setting-table-main .file-options-main .dropdown-menu li {
    float: left;
    margin-left: 16px;
  }
}

.setting-table-main .file-options-main .dropdown-menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-secondary);
  padding: 3px 0;
  width: 100%;
  height: auto;
  line-height: 24px;
}

.setting-table-main .file-options-main .dropdown-menu li a .icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.setting-table-main .file-options-main .dropdown-menu li a .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 1%;
  font-size: 14px;
}

.setting-table-main .file-options-main .dropdown-menu li a:hover, .setting-table-main .file-options-main .dropdown-menu li a:focus, .setting-table-main .file-options-main .dropdown-menu li a:active {
  color: var(--color-primary);
}

.setting-table-main .file-options-main .dropdown-menu li a:hover .icon svg path, .setting-table-main .file-options-main .dropdown-menu li a:focus .icon svg path, .setting-table-main .file-options-main .dropdown-menu li a:active .icon svg path {
  fill: var(--color-primary);
}

.edit-plan-sec {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  margin-bottom: 25px;
  border-radius: 15px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 575px) {
  .edit-plan-sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.edit-plan-sec .edit-plan-text-sec {
  width: 1%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media only screen and (max-width: 575px) {
  .edit-plan-sec .edit-plan-text-sec {
    width: 100%;
    margin-bottom: 10px;
  }
}

.edit-plan-sec .edit-plan-text-sec h4 {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 7px;
}

.edit-plan-sec .edit-plan-text-sec h4 span {
  color: var(--color-primary);
}

.edit-plan-sec .edit-plan-text-sec h5 {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-black);
  margin-bottom: 0;
}

.invoice-total {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-green);
}

.search-sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 1199px) {
  .search-sort {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media only screen and (max-width: 1199px) {
  .search-sort .file-search {
    max-width: 100%;
    margin-bottom: 15px;
  }
}

.search-sort .sort-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767px) {
  .search-sort .sort-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100%;
  }
}

.search-sort .sort-action .sort-block {
  margin-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767px) {
  .search-sort .sort-action .sort-block {
    margin: 0 0 10px;
  }
}

@media only screen and (max-width: 575px) {
  .search-sort .sort-action .sort-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.search-sort .sort-action .sort-block:first-child {
  margin-left: 0;
}

.search-sort .sort-action .sort-block label {
  white-space: nowrap;
  margin-right: 15px;
}

@media only screen and (max-width: 767px) {
  .search-sort .sort-action .sort-block label {
    min-width: 60px;
  }
}

@media only screen and (max-width: 575px) {
  .search-sort .sort-action .sort-block label {
    min-width: 100%;
    margin-right: 0;
  }
}

.search-sort .sort-action .sort-block select {
  min-width: 150px;
  border-radius: 8px;
  border-color: var(--color-grey-light);
}

@media only screen and (max-width: 767px) {
  .search-sort .sort-action .sort-block select {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 1%;
  }
}

@media only screen and (max-width: 575px) {
  .search-sort .sort-action .sort-block select {
    width: 100%;
    min-width: 100%;
  }
}

@media only screen and (max-width: 575px) {
  .search-sort .sort-action .sort-block .btn {
    width: 100%;
    margin-left: 0 !important;
  }
}

.form-select-date {
  background-color: var(--color-white);
  border-radius: 8px;
  border: 1px solid var(--color-black);
  height: 40px;
  width: 180px;
  padding: 0 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='14.417' viewBox='0 0 15 14.417'%3E%3Cpath id='calendar' d='M18.083,3.667H15.25V2.25H13.833V3.667H10.167V2.25H8.75V3.667H5.917A1.42,1.42,0,0,0,4.5,5.083V15.25a1.42,1.42,0,0,0,1.417,1.417H18.083A1.42,1.42,0,0,0,19.5,15.25V5.083A1.42,1.42,0,0,0,18.083,3.667Zm0,11.583H5.917V9.333H18.083Zm0-7.333H5.917V5.083H8.75V6.5h1.417V5.083h3.667V6.5H15.25V5.083h2.833Z' transform='translate(-4.5 -2.25)' fill='%23333'/%3E%3C/svg%3E%0A");
  background-position: right 10px center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
  .form-select-date {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

@media only screen and (max-width: 575px) {
  .form-select-date {
    width: 100%;
    min-width: 100%;
    margin-bottom: 10px;
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}

.signupFormRadiosec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 25px;
}

.signupFormRadioMain {
  padding: 0;
}

.signupFormRadioMain::after {
  content: '';
  display: table;
  clear: both;
}

.signupFormRadioMain .custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}

.signupFormRadioMain .signupProRI ~ .signupFormRadio {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 15px;
  color: var(--color-black);
  cursor: pointer;
  float: left;
  width: 200px;
  height: 118px;
  margin: 0;
  margin-right: 25px;
  position: relative;
  padding: 31px;
}

@media only screen and (max-width: 575px) {
  .signupFormRadioMain .signupProRI ~ .signupFormRadio {
    padding: 20px;
    width: 120px;
    height: 108px;
  }
}

.signupFormRadioMain .signupProRI ~ .signupFormRadio:before, .signupFormRadioMain .signupProRI ~ .signupFormRadio:after {
  display: none;
}

.signupFormRadioMain .signupProRI ~ .signupFormRadio h3 {
  font-weight: 500;
  font-size: 18px;
  margin: 0px;
  color: var(--color-black);
}

.signupFormRadioMain .signupProRI ~ .signupFormRadio .icon {
  margin-bottom: 15px;
}

.signupFormRadioMain .signupProRI:checked ~ .signupFormRadio {
  background-color: var(--color-black);
  border: 1px solid var(--color-black);
  color: var(--color-white);
}

.signupFormRadioMain .signupProRI:checked ~ .signupFormRadio h3 {
  color: var(--color-white);
}

.signupFormRadioMain .signupProRI:checked ~ .signupFormRadio .icon svg path {
  fill: var(--color-white);
}

.subscription-sec {
  background-color: var(--color-white);
  border: 1px dashed var(--color-border);
  padding: 30px;
  margin-bottom: 25px;
  border-radius: 15px;
}

@media only screen and (max-width: 767px) {
  .subscription-sec {
    padding: 20px;
  }
}

.subscription-sec h2 {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 15px;
}

@media only screen and (max-width: 575px) {
  .subscription-sec h2 {
    font-size: 17px;
  }
}

.subscription-sec .subsc-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media only screen and (max-width: 479px) {
  .subscription-sec .subsc-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.subscription-sec .subsc-center .subsc-price-sec h4 {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-black);
}

@media only screen and (max-width: 575px) {
  .subscription-sec .subsc-center .subsc-price-sec h4 {
    font-size: 27px;
  }
}

.subscription-sec .subsc-center .subsc-price-sec h5 {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-paragraph);
}

@media only screen and (max-width: 575px) {
  .subscription-sec .subsc-center .subsc-price-sec h5 {
    font-size: 16px;
  }
}

.subscription-sec .subsc-center .counter-sec-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}

@media only screen and (max-width: 479px) {
  .subscription-sec .subsc-center .counter-sec-input {
    margin-left: 0;
  }
}

.subscription-sec .subsc-center .counter-sec-input .pls-mins-btn {
  width: 35px;
  height: 35px;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--color-black);
  padding: 0;
}

.subscription-sec .subsc-center .counter-sec-input .pls-mins-input {
  width: 78px;
  height: 50px;
  text-align: center;
  margin: 0 15px;
}

.subscription-right-col {
  background-color: var(--color-white);
  border: 1px dashed var(--color-border);
  padding: 30px;
  margin-bottom: 25px;
  border-radius: 15px;
}

.subscription-right-col h2 {
  font-size: 27px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.subsc-user-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.subsc-user-total.total-main {
  margin-bottom: 22px;
}

.subsc-user-total.total-main .total-user, .subsc-user-total.total-main .user-total-price {
  font-size: 21px;
  font-weight: 700;
}

.total-user {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-black);
}

.user-total-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--color-black);
  margin-left: auto;
}

.user-total-price.color-primary {
  color: var(--color-primary);
}

.incl-tax-txt {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-paragraph);
  margin-bottom: 6px;
}

.incl-tax-txt-small {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-paragraph);
  line-height: 19px;
}

@media only screen and (max-width: 991px) {
  .setting-table-responsive {
    overflow: auto;
  }
}

:root, [data-theme="default"] {
  --font-family:              Roboto, sans-serif;
  --color-white:              white;
  --color-whiter:             #e0f4f7;
  --color-whiter-light:       #fafdf9;
  --color-black:              #070707;
  --color-grey:               #e1e9df;
  --color-primary:            #007c8a;
  --color-secondary:          #555760;
  --color-orange:             #f9b52e;
  --color-red:                #ee4242;
  --color-red-light:          #fdeff0;
  --color-green:              #39af64;
  --color-blue:               #73bcfb;
  --color-blue-light:         #f2f1fb;
  --color-facebook:           #245eaa;
  --color-google:             #e24a2f;
  --color-behance:            #1767fc;
  --color-dribble:            #ee4a89;
  --color-instagram:          #ffab02;
  --color-placeholder:        #a5aebc;
  --color-paragraph:          #83a1a5;
  --color-border:             #638287;
}

.custom--btn {
  text-align: center;
  background: var(--color-primary);
  color: var(--color-white);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 100px;
}

.custom--btn.btn__dark {
  background: var(--color-black);
  color: var(--color-white);
}

.custom--btn.btn__dark:hover, .custom--btn.btn__dark:focus, .custom--btn.btn__dark:active {
  opacity: .7;
  background: var(--color-black);
  color: var(--color-white);
}

.custom--btn.btn__light {
  background: var(--color-white);
  color: var(--color-primary);
}

.custom--btn.btn__light:hover, .custom--btn.btn__light:focus, .custom--btn.btn__light:active {
  opacity: .7;
  background: var(--color-white);
  color: var(--color-primary);
}

.custom--btn:hover, .custom--btn:focus, .custom--btn:active {
  opacity: .7;
  background: var(--color-primary);
  color: var(--color-white);
}

.custom--btn:hover svg path, .custom--btn:focus svg path, .custom--btn:active svg path {
  fill: var(--color-white);
}

.custom--btn.btn__bordered {
  border: 2px solid var(--color-primary);
  background: none;
  color: var(--color-primary);
}

.custom--btn.btn__bordered:hover, .custom--btn.btn__bordered:focus, .custom--btn.btn__bordered:active {
  background: var(--color-primary);
  color: var(--color-white);
}

.custom--btn.btn__bordered:hover svg path, .custom--btn.btn__bordered:focus svg path, .custom--btn.btn__bordered:active svg path {
  fill: var(--color-white);
}

.custom--btn.btn__bordered svg {
  margin-right: 6px;
}

.custom--btn.dark-hover:hover, .custom--btn.dark-hover:focus, .custom--btn.dark-hover:active {
  background: var(--color-secondary);
  color: var(--color-white);
}

.custom--btn.dark-hover:hover svg path, .custom--btn.dark-hover:focus svg path, .custom--btn.dark-hover:active svg path {
  fill: var(--color-white);
}

.button__sm {
  font-weight: 500;
  padding: 0 12px;
  line-height: 30px;
  font-size: 16px;
}

@media only screen and (max-width: 991px) {
  .button__sm {
    padding: 0 10px;
    line-height: 28px;
    font-size: 14px;
  }
}

.button__md {
  padding: 0 25px;
  line-height: 40px;
  font-size: 16px;
  font-weight: 500;
}

@media only screen and (max-width: 991px) {
  .button__md {
    padding: 0 17px;
    line-height: 35px;
    font-size: 14px;
  }
}

.button__lg {
  padding: 0 36px;
  line-height: 50px;
  font-size: 20px;
  font-weight: 500;
}

@media only screen and (max-width: 991px) {
  .button__lg {
    padding: 0 20px;
    line-height: 40px;
    font-size: 16px;
  }
}

.button__xl {
  font-size: 25px;
  font-weight: 700;
  padding: 0 50px;
  line-height: 55px;
}

@media only screen and (max-width: 991px) {
  .button__xl {
    font-size: 20px;
    padding: 0 30px;
    line-height: 45px;
  }
}

.text--md {
  font-size: 14px;
  font-weight: 500;
}

.text--lg {
  font-size: 16px;
  font-weight: 700;
}

.text--llg {
  font-size: 18px;
  font-weight: 700;
}

.text--xl {
  font-size: 22px;
  font-weight: 700;
}

.box-rotate {
  width: 20px;
  height: 3px;
  background-color: var(--color-primary);
}

.box-rotate.small {
  width: 10px;
  height: 2px;
}

.btn-block {
  width: 100%;
}

:root, [data-theme="default"] {
  --font-family:              Roboto, sans-serif;
  --color-white:              white;
  --color-whiter:             #e0f4f7;
  --color-whiter-light:       #fafdf9;
  --color-black:              #070707;
  --color-grey:               #e1e9df;
  --color-primary:            #007c8a;
  --color-secondary:          #555760;
  --color-orange:             #f9b52e;
  --color-red:                #ee4242;
  --color-red-light:          #fdeff0;
  --color-green:              #39af64;
  --color-blue:               #73bcfb;
  --color-blue-light:         #f2f1fb;
  --color-facebook:           #245eaa;
  --color-google:             #e24a2f;
  --color-behance:            #1767fc;
  --color-dribble:            #ee4a89;
  --color-instagram:          #ffab02;
  --color-placeholder:        #a5aebc;
  --color-paragraph:          #83a1a5;
  --color-border:             #638287;
}

*, body {
  font-family: var(--font-family);
}

html, body {
  padding: 0;
  margin: 0;
}

body {
  overflow-x: hidden;
  background: var(--color-black);
  font-size: 16px;
}

body, p, form, input, h1, h2, h3, h4, h5, h6, p, form, ul, li, ol, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  font-family: var(--font-family);
  color: var(--color-black);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* Professional Footer Styles */
.main-footer {
	display: block !important;
	background: #0f172a;
	padding: 70px 0 30px !important;
	color: var(--color-white);
	font-family: var(--font-family);
}
.main-footer .footer-logo {
	font-size: 26px;
	font-weight: 700;
	color: var(--color-white);
	text-decoration: none;
	display: inline-block;
	margin-bottom: 20px;
}
.main-footer .footer-desc {
	color: var(--color-paragraph);
	line-height: 1.6;
	font-size: 15px;
}
.main-footer .footer-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--color-white);
	margin-bottom: 20px;
}
.main-footer .footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}
.main-footer .footer-links li {
	margin-bottom: 12px;
}
.main-footer .footer-links a {
	color: var(--color-paragraph);
	text-decoration: none;
	transition: 0.3s;
}
.main-footer .footer-links a:hover {
	color: var(--color-primary);
}
.main-footer .footer-social-new {
	display: flex;
	gap: 15px;
}
.main-footer .footer-social-new a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}
.main-footer .footer-social-new a:hover {
	background: var(--color-primary);
	color: var(--color-white);
}
.main-footer .copyright-text {
	color: var(--color-paragraph);
	font-size: 14px;
}
.main-footer .footer-legal a:hover {
	color: var(--color-white) !important;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  font-family: var(--font-family);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover, a:focus, a:active {
  text-decoration: underline;
  color: var(--color-primary);
}

button, a, input, textarea {
  outline: 0 !important;
}

/* Margin */
.m-all-0 {
  margin: 0px !important;
}

.m-all-10 {
  margin: 10px !important;
}

.m-all-20 {
  margin: 20px !important;
}

.m-all-30 {
  margin: 30px !important;
}

.m-all-40 {
  margin: 40px !important;
}

.m-l-0 {
  margin-left: 0px !important;
}

.m-r-0 {
  margin-right: 0px !important;
}

.m-t-0 {
  margin-top: 0px !important;
}

.m-b-0 {
  margin-bottom: 0px !important;
}

.m-l-1 {
  margin-left: 1px !important;
}

.m-l-2 {
  margin-left: 2px !important;
}

.m-l-3 {
  margin-left: 3px !important;
}

.m-l-4 {
  margin-left: 4px !important;
}

.m-l-5 {
  margin-left: 5px !important;
}

.m-l-6 {
  margin-left: 6px !important;
}

.m-l-7 {
  margin-left: 7px !important;
}

.m-l-8 {
  margin-left: 8px !important;
}

.m-l-9 {
  margin-left: 9px !important;
}

.m-r-1 {
  margin-right: 1px !important;
}

.m-r-2 {
  margin-right: 2px !important;
}

.m-r-3 {
  margin-right: 3px !important;
}

.m-r-4 {
  margin-right: 4px !important;
}

.m-r-5 {
  margin-right: 5px !important;
}

.m-r-6 {
  margin-right: 6px !important;
}

.m-r-7 {
  margin-right: 7px !important;
}

.m-r-8 {
  margin-right: 8px !important;
}

.m-r-9 {
  margin-right: 9px !important;
}

.m-t-1 {
  margin-top: 1px !important;
}

.m-t-2 {
  margin-top: 2px !important;
}

.m-t-3 {
  margin-top: 3px !important;
}

.m-t-4 {
  margin-top: 4px !important;
}

.m-t-5 {
  margin-top: 5px !important;
}

.m-t-6 {
  margin-top: 6px !important;
}

.m-t-7 {
  margin-top: 7px !important;
}

.m-t-8 {
  margin-top: 8px !important;
}

.m-t-9 {
  margin-top: 9px !important;
}

.m-b-1 {
  margin-bottom: 1px !important;
}

.m-b-2 {
  margin-bottom: 2px !important;
}

.m-b-3 {
  margin-bottom: 3px !important;
}

.m-b-4 {
  margin-bottom: 4px !important;
}

.m-b-5 {
  margin-bottom: 5px !important;
}

.m-b-6 {
  margin-bottom: 6px !important;
}

.m-b-7 {
  margin-bottom: 7px !important;
}

.m-b-8 {
  margin-bottom: 8px !important;
}

.m-b-9 {
  margin-bottom: 9px !important;
}

.m-l-10 {
  margin-left: 10px !important;
}

.m-r-10 {
  margin-right: 10px !important;
}

.m-t-10 {
  margin-top: 10px !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.m-l-15 {
  margin-left: 15px !important;
}

.m-r-15 {
  margin-right: 15px !important;
}

.m-t-15 {
  margin-top: 15px !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

.m-l-20 {
  margin-left: 20px !important;
}

.m-r-20 {
  margin-right: 20px !important;
}

.m-t-20 {
  margin-top: 20px !important;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.m-l-25 {
  margin-left: 25px !important;
}

.m-r-25 {
  margin-right: 25px !important;
}

.m-t-25 {
  margin-top: 25px !important;
}

.m-b-25 {
  margin-bottom: 25px !important;
}

.m-l-30 {
  margin-left: 30px !important;
}

.m-r-30 {
  margin-right: 30px !important;
}

.m-t-30 {
  margin-top: 30px !important;
}

.m-b-30 {
  margin-bottom: 30px !important;
}

.m-l-35 {
  margin-left: 35px !important;
}

.m-r-35 {
  margin-right: 35px !important;
}

.m-t-35 {
  margin-top: 35px !important;
}

.m-b-35 {
  margin-bottom: 35px !important;
}

.m-l-40 {
  margin-left: 40px !important;
}

.m-r-40 {
  margin-right: 40px !important;
}

.m-t-40 {
  margin-top: 40px !important;
}

.m-b-40 {
  margin-bottom: 40px !important;
}

.m-l-45 {
  margin-left: 45px !important;
}

.m-r-45 {
  margin-right: 45px !important;
}

.m-t-45 {
  margin-top: 45px !important;
}

.m-b-45 {
  margin-bottom: 45px !important;
}

.m-l-50 {
  margin-left: 40px !important;
}

.m-r-50 {
  margin-right: 40px !important;
}

.m-t-50 {
  margin-top: 40px !important;
}

.m-b-50 {
  margin-bottom: 40px !important;
}

/* Padding */
.p-all-0 {
  padding: 0px !important;
}

.p-all-10 {
  padding: 10px !important;
}

.p-all-20 {
  padding: 20px !important;
}

.p-all-30 {
  padding: 30px !important;
}

.p-all-40 {
  padding: 40px !important;
}

.p-l-0 {
  padding-left: 0px !important;
}

.p-r-0 {
  padding-right: 0px !important;
}

.p-t-0 {
  padding-top: 0px !important;
}

.p-b-0 {
  padding-bottom: 0px !important;
}

.p-l-1 {
  padding-left: 1px !important;
}

.p-l-2 {
  padding-left: 2px !important;
}

.p-l-3 {
  padding-left: 3px !important;
}

.p-l-4 {
  padding-left: 4px !important;
}

.p-l-5 {
  padding-left: 5px !important;
}

.p-l-6 {
  padding-left: 6px !important;
}

.p-l-7 {
  padding-left: 7px !important;
}

.p-l-8 {
  padding-left: 8px !important;
}

.p-l-9 {
  padding-left: 9px !important;
}

.p-r-1 {
  padding-right: 1px !important;
}

.p-r-2 {
  padding-right: 2px !important;
}

.p-r-3 {
  padding-right: 3px !important;
}

.p-r-4 {
  padding-right: 4px !important;
}

.p-r-5 {
  padding-right: 5px !important;
}

.p-r-6 {
  padding-right: 6px !important;
}

.p-r-7 {
  padding-right: 7px !important;
}

.p-r-8 {
  padding-right: 8px !important;
}

.p-r-9 {
  padding-right: 9px !important;
}

.p-t-1 {
  padding-top: 1px !important;
}

.p-t-2 {
  padding-top: 2px !important;
}

.p-t-3 {
  padding-top: 3px !important;
}

.p-t-4 {
  padding-top: 4px !important;
}

.p-t-5 {
  padding-top: 5px !important;
}

.p-t-6 {
  padding-top: 6px !important;
}

.p-t-7 {
  padding-top: 7px !important;
}

.p-t-8 {
  padding-top: 8px !important;
}

.p-t-9 {
  padding-top: 9px !important;
}

.p-b-1 {
  padding-bottom: 1px !important;
}

.p-b-2 {
  padding-bottom: 2px !important;
}

.p-b-3 {
  padding-bottom: 3px !important;
}

.p-b-4 {
  padding-bottom: 4px !important;
}

.p-b-5 {
  padding-bottom: 5px !important;
}

.p-b-6 {
  padding-bottom: 6px !important;
}

.p-b-7 {
  padding-bottom: 7px !important;
}

.p-b-8 {
  padding-bottom: 8px !important;
}

.p-b-9 {
  padding-bottom: 9px !important;
}

.p-l-10 {
  padding-left: 10px !important;
}

.p-r-10 {
  padding-right: 10px !important;
}

.p-t-10 {
  padding-top: 10px !important;
}

.p-b-10 {
  padding-bottom: 10px !important;
}

.p-l-15 {
  padding-left: 15px !important;
}

.p-r-15 {
  padding-right: 15px !important;
}

.p-t-15 {
  padding-top: 15px !important;
}

.p-b-15 {
  padding-bottom: 15px !important;
}

.p-l-20 {
  padding-left: 20px !important;
}

.p-r-20 {
  padding-right: 20px !important;
}

.p-t-20 {
  padding-top: 20px !important;
}

.p-b-20 {
  padding-bottom: 20px !important;
}

.p-l-25 {
  padding-left: 25px !important;
}

.p-r-25 {
  padding-right: 25px !important;
}

.p-t-25 {
  padding-top: 25px !important;
}

.p-b-25 {
  padding-bottom: 25px !important;
}

.p-l-30 {
  padding-left: 30px !important;
}

.p-r-30 {
  padding-right: 30px !important;
}

.p-t-30 {
  padding-top: 30px !important;
}

.p-b-30 {
  padding-bottom: 30px !important;
}

.p-l-35 {
  padding-left: 35px !important;
}

.p-r-35 {
  padding-right: 35px !important;
}

.p-t-35 {
  padding-top: 35px !important;
}

.p-b-35 {
  padding-bottom: 35px !important;
}

.p-l-40 {
  padding-left: 40px !important;
}

.p-r-40 {
  padding-right: 40px !important;
}

.p-t-40 {
  padding-top: 40px !important;
}

.p-b-40 {
  padding-bottom: 40px !important;
}

.p-l-45 {
  padding-left: 45px !important;
}

.p-r-45 {
  padding-right: 45px !important;
}

.p-t-45 {
  padding-top: 45px !important;
}

.p-b-45 {
  padding-bottom: 45px !important;
}

.p-l-50 {
  padding-left: 50px !important;
}

.p-r-50 {
  padding-right: 50px !important;
}

.p-t-50 {
  padding-top: 50px !important;
}

.p-b-50 {
  padding-bottom: 50px !important;
}

.border-left-none {
  border-left: none !important;
}

.border-right-none {
  border-right: none !important;
}

.border-top-none {
  border-top: none !important;
}

.border-bottom-none {
  border-bottom: none !important;
}

.border-all-none {
  border: none !important;
}

.cursor-pointer {
  cursor: pointer;
}

.form-control, .btn.focus, .btn:focus, .custom-select:focus, .form-control:focus, .form-select:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

label {
  color: var(--color-secondary);
  font-size: 15px;
  margin-bottom: 5px;
}

.custom-label {
  color: var(--color-black);
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-select {
  background-size: 35px 17px;
}

.form-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}

.form-check .form-check-input {
  width: 16px;
  height: 16px;
  background-color: var(--color-grey);
  border-color: var(--color-grey);
  margin: 0 14px 0 0;
}

.form-check .form-check-input[type=checkbox] {
  border-radius: 4px;
}

.form-check .form-check-input[type=radio] {
  border-radius: 50%;
}

.form-check .form-check-input:active {
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
}

.form-check .form-check-input:focus {
  border-color: var(--color-grey);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-check .form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.form-check .form-check-input:checked[type=checkbox] {
  background-size: 12px 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cg id='Group_440' data-name='Group 440' transform='translate(-322 -367)'%3E%3Cg id='check' transform='translate(313.727 358.859)'%3E%3Cpath id='Path_662' data-name='Path 662' d='M17.762,10.956A.934.934,0,1,1,19.1,12.264l-4.972,6.215a.934.934,0,0,1-1.345.025l-3.295-3.3a.934.934,0,1,1,1.32-1.32l2.608,2.607,4.325-5.511a.294.294,0,0,1,.025-.027Z' transform='translate(0 0)' fill='%23fff' stroke='%23fff' stroke-width='1' fill-rule='evenodd'/%3E%3C/g%3E%3Crect id='Rectangle_77' data-name='Rectangle 77' width='12' height='12' transform='translate(322 367)' fill='none'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.form-check .form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check .form-check-input[type=checkbox]:indeterminate {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}

.form-check label {
  margin-bottom: 0;
}

.form-check.form-switch {
  padding-left: 2.5em;
}

.form-check.form-switch .form-check-input {
  width: 40px;
  margin-left: -40px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 40px;
  -webkit-transition: background-position .15s ease-in-out;
  transition: background-position .15s ease-in-out;
}

.form-check.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check.form-switch .form-check-input:checked[type="checkbox"] {
  background-size: 18px 18px;
}

.form-check-input:focus ~ .form-check-label:before, .form-check-input:checked, .form-check-input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-group {
  margin-bottom: 15px;
}

@media only screen and (max-width: 991px) {
  .form-group {
    margin-bottom: 12px;
  }
}

.custom-input {
  height: 50px;
  font-weight: 500;
  padding-left: 22px;
  padding-right: 22px;
  font-size: 18px;
  border: 1px solid var(--color-border);
  border-radius: 15px;
  color: var(--color-black);
  background-color: var(--color-white);
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .custom-input {
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }
}

.custom-input.placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

.custom-input:-moz-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

.custom-input::-moz-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

.custom-input:-ms-input-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

.custom-input::-webkit-input-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

.custom-input:focus, .custom-input:active {
  border-color: var(--color-black);
  color: var(--color-black);
}

.custom-input.form-select:focus {
  color: var(--color-black);
}

.custom-textarea {
  font-weight: 500;
  padding: 10px 15px;
  font-size: 19px;
  border: 1px solid var(--color-border);
  border-radius: 15px;
  color: var(--color-black);
  background-color: var(--color-white);
  resize: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .custom-textarea {
    padding: 9px 12px;
    font-size: 14px;
    border-radius: 15px;
  }
}

.custom-textarea.placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

.custom-textarea:-moz-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

.custom-textarea::-moz-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

.custom-textarea:-ms-input-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

.custom-textarea::-webkit-input-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

.custom-textarea:focus, .custom-textarea:active {
  border-color: var(--color-black);
  color: var(--color-black);
}

.btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.position-relative {
  position: relative;
}

.img-responsivee {
  max-width: 100%;
  height: auto;
}

.color--black {
  color: var(--color-darken);
}

.color--black:hover, .color--black:focus {
  color: var(--color-darken);
}

.color--white {
  color: var(--color-white);
}

.color--white:hover, .color--white:focus {
  color: var(--color-white);
}

svg {
  vertical-align: initial;
}

.fill--white {
  fill: var(--color-white);
}

.fill--black {
  fill: var(--color-darken);
}

.dropdown-menu-right {
  right: 0 !important;
  left: auto !important;
}

svg path {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

hr {
  background-color: var(--color-border);
  margin: 30px 0;
  opacity: 1;
}

@media only screen and (max-width: 991px) {
  hr {
    margin: 20px 0;
  }
}

hr.small-marg {
  margin: 15px 0;
}

@media only screen and (max-width: 991px) {
  hr.small-marg {
    margin: 10px 0;
  }
}

@media only screen and (min-width: 992px) {
  hr.mobile {
    display: none;
  }
}

.paragraph {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: var(--color-black);
  margin-bottom: 25px;
}

@media only screen and (max-width: 991px) {
  .paragraph {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 20px;
  }
}

.paragraph.line-height {
  line-height: 1.2;
}

.nav-overflow {
  overflow: hidden;
}

.input-alerts {
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 400;
  line-height: 14px;
  padding: 6px 12px;
  margin-top: 5px;
  border-radius: 100px;
  border: 1px solid var(--color-secondary);
}

.input-alerts.alert-danger {
  background-color: rgba(212, 41, 64, 0.2);
  border-color: var(--color-red);
  color: var(--color-red);
}

.form-label-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}

.form-label-sec label {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-black);
}

.form-label-sec .form-error {
  margin-left: auto;
}
/*# sourceMappingURL=style.css.map */