
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");
/*import vendors*/
@import url(vendors/normalize.css);
@import url(vendors/bootstrap.min.css);
@import url(vendors/uicons-regular-rounded.css);
/*import plugins*/
@import url(plugins/swiper-bundle.min.css);
@import url(plugins/magnific-popup.css);
@import url(plugins/select2.min.css);
@import url(plugins/perfect-scrollbar.css);
@import url(plugins/animate.min.css);
/*RESET*/

.box-content {
  width: 100%;
  padding: 40px 30px;
  display: inline-block;
  overflow: hidden;
}

.container {
  max-width: 100%;
  padding: 0px;
}

.border-bottom {
  border-bottom: 1px solid #E0E6F7;
  width: 100%;
}

#chartdiv {
  width: 100%;
  height: 500px;
}

.dropdown-menu {
  z-index: 12;
}

a,
button,
img,
input,
span {
  transition: all 0.3s ease 0s;
}

@keyframes slideleft {
  10% {
    opacity: 0;
    transform: scale(0);
    right: 0;
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  90% {
    opacity: 0;
    transform: scale(0);
    right: 100%;
  }
}
@keyframes spinner {
  0% {
    transform: perspective(120px) rotateX(0) rotateY(0);
  }
  50% {
    transform: perspective(120px) rotateX(-180deg) rotateY(0);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
  }
}
@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(151, 119, 250, 0.8);
  }
  100% {
    box-shadow: 0 0 0 5px rgba(0, 0, 0, 0);
  }
}
@keyframes shadow-pulse-big {
  0% {
    box-shadow: 0 0 0 0px rgba(239, 63, 72, 0.1);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
@keyframes jump {
  0% {
    transform: translate3d(0, 20%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.jump {
  transform-origin: 0;
  animation: jump 0.5s linear alternate infinite;
}

/*TYPOGRAPHY*/
.btn {
  font-family: "Plus Jakarta Sans", sans-serif;
  border-radius: 8px;
  padding: 13px 25px;
  font-size: 14px;
  line-height: 16px;
  transition: 0.2s;
}
.btn.btn-default {
  color: #ffffff;
  background-color: var(--primary-color);
  padding: 11px 20px 13px 20px;
}
.btn.btn-secondary {
  color: #ffffff;
  background-color: var(--secondary-color);
  padding: 11px 20px 13px 20px !important;
}

.btn.btn-secondary:hover {
  opacity: 0.8;
}

.btn.btn-default:hover {
  background-color: #17469e;
  transform: translateY(-2px);
  transition: 0.2s;
}
.btn.btn-notify {
  background: url(../imgs/page/dashboard/notify.svg) no-repeat center;
  display: inline-block;
  vertical-align: middle;
  height: 52px;
  width: 30px;
  position: relative;
}
.btn.btn-notify::before {
  content: "";
  height: 8px;
  width: 8px;
  background: url(../imgs/page/dashboard/icon-notify.svg) no-repeat center;
  position: absolute;
  top: 15px;
  right: 15px;
}
.btn.icon-edit {
  background-image: url(../imgs/page/dashboard/edit.svg);
  background-repeat: no-repeat;
  background-position: 15px 15px;
  padding-left: 45px;
}
.btn.btn-tag {
  background-color: #EAF2FF;
  font-size: 12px;
  line-height: 18px;
  padding: 7px 10px;
  border-radius: 5px;
  color: #66789C;
  margin: 0px 5px 5px 0px;
}
.btn.btn-tag.high {
  background-color: #fff5f8;
  color: #f1416c;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.btn.btn-tag.complete {
  background-color: #e8fff3;
  color: #41bc79;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.btn.btn-tag.mid {
  background-color: #f8f5ff;
  color: #7239ea;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.btn.btn-tag.in-progress {
  background-color: #fbe5df;
  color: #ef5a32;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.btn.btn-tag.low {
  background-color: #eff2f5;
  color: #111a4d;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.btn.btn-tag.planing {
  background-color: #f1faff;
  color: #06a0f7;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.btn.btn-grey-small {
  border-radius: 3px;
  background-color: #F2F4FA;
  font-size: 12px;
  line-height: 18px;
  color: #66789C;
  font-weight: 500;
  padding: 3px 7px;
}
.btn.btn-link {
  color: #05264E;
  font-size: 14px;
  line-height: 14px;
  text-decoration: underline;
  padding: 11px 20px 13px 20px;
}
.btn.btn-delete {
  color: #E45959;
  font-size: 14px;
  line-height: 14px;
  text-decoration: underline;
  padding: 11px 20px 13px 20px;
}
.btn.btn-brand {
  border-radius: 4px;
}
.btn.icon-tick {
  background-image: url(../imgs/page/profile/tick.svg);
  background-repeat: no-repeat;
  background-position: 18px 10px;
  padding-left: 47px;
}
.btn.btn-editor {
  background-image: url(../imgs/page/my-resume/btn-edit.svg);
  background-repeat: no-repeat;
  background-position: center;
  height: 32px;
  width: 32px;
  background-color: #EFF2FB;
  padding: 0px;
}
.btn.btn-remove {
  background-image: url(../imgs/page/my-resume/btn-delete.svg);
  background-repeat: no-repeat;
  background-position: center;
  height: 32px;
  width: 32px;
  padding: 0px;
  background-color: #EFF2FB;
  margin-left: 8px;
}
.btn.btn-apply-now {
  background-color: #E0E6F7;
  color: var(--primary-color);
  padding: 12px 10px;
  min-width: 95px;
  border-radius: 4px;
  font-size: 12px;
  text-transform: capitalize;
}

.btn-tags-sm {
  padding: 6px 18px;
  color: #66789C;
  border-radius: 5px;
  color: var(--primary-color);
  min-width: 42px;
  font-size: 12px;
  line-height: 18px;
  background-color: rgba(81, 146, 255, 0.12);
}

.btn-brand-1 {
  padding: 18px 25px;
  background: #05264E;
  color: #ffffff;
  border-radius: 4px;
}
.style-nav-top .swiper-button-next {
  top: -30px;
  right: -5px;
  left: auto;
}
.style-nav-top .swiper-button-prev {
  top: -30px;
  right: 45px;
  left: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.cb-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  line-height: 21px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.cb-container {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #ffffff;
  border: 1px solid #E0E6F7;
  border-radius: 7px;
}

.cb-container input:checked ~ .checkmark {
  border: 2px solid var(--primary-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.cb-container input:checked ~ .checkmark:after {
  display: block;
}

.cb-container .checkmark:after {
  left: 0px;
  top: -1px;
  width: 21px;
  height: 22px;
  border-radius: 5px;
  background: var(--primary-color) url(../imgs/template/icons/tick.svg) no-repeat center;
}

/*COMPONENTS -> FORM*/
input:-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 1;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
}

input[type=text],
input[type=email],
input[type=date],
input[type=time],
input[type=tel] {
  border: 1px solid #E0E6F7;
  border-radius: 4px;
  /* height: 50px; */
  box-shadow: none;
  padding-left: 20px;
  font-size: 14px;
  width: 100%;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=date]:focus,
input[type=time]:focus,
input[type=tel]:focus {
  border: 1px solid #EFF2FB;
}

select {
  width: 100%;
  background: transparent;
  border: 0px solid #B4C0E0;
  box-shadow: none;
  font-size: 16px;
  color: #4F5E64;
}

option {
  background: #fff;
  border: 0px solid #626262;
  padding-left: 10px;
  font-size: 16px;
}

/*contact form*/
.mt-6 {
  margin-top: 6px !important;
}

.modal-lg, .modal-xl {
  max-width: 600px;
}

.modal-content .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}



.icon-down {
  display: inline-block;
  padding-right: 15px;
  background: url(../imgs/page/dashboard/triangle.svg) no-repeat right center;
}

.mobile-header-wrapper-style {
  position: fixed;
  top: 0px;
  width: 380px;
  min-height: 100vh;
  bottom: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  background-color: #ffffff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.09);
  z-index: 1000;
}
.mobile-header-wrapper-style.sidebar-visible {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner {
  padding: 0px 0px 30px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 34px 30px 30px 30px;
  background-color: #ffffff;
  align-items: center;
  align-self: center;
  border-bottom: thin solid #E0E6F6;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top .mobile-header-logo a {
  display: block;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top .mobile-header-logo a img {
  width: 100px;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area {
  padding: 30px 30px 30px;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li {
  display: block;
  position: relative;
  padding: 13px 0;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.hr {
  display: none;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li:last-child {
  border-bottom: none;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.has-children .menu-expand {
  right: 0;
  position: absolute;
  cursor: pointer;
  z-index: 9;
  text-align: center;
  font-size: 12px;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 38px;
  top: 5px;
  color: #05264E;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.has-children .menu-expand i {
  font-size: 18px;
  font-weight: 300;
  opacity: 0.5;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.has-children.active > .menu-expand {
  background: rgba(255, 255, 255, 0.2);
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.has-children.active > .menu-expand i::before {
  content: "\f113";
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li a {
  font-size: 16px;
  line-height: 1;
  text-transform: capitalize;
  font-weight: 500;
  position: relative;
  display: inline-block;
  color: #05264E;
  transition-duration: 0.2s;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li a i {
  margin-right: 5px;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul {
  padding: 10px 0 0 10px;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li {
  padding: 10px 0;
  border-bottom: none;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li.has-children .menu-expand {
  top: 0px;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li:hover a {
  padding-left: 13px;
  transition-duration: 0.2s;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li:hover a::before {
  opacity: 1;
  transition-duration: 0.2s;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li a {
  font-size: 14px;
  display: block;
  font-weight: 500;
  color: #253D4E;
  padding-left: 10px;
  position: relative;
  transition-duration: 0.2s;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -3px;
  width: 5px;
  height: 5px;
  background-color: #E0E6F6;
  border-radius: 50%;
  opacity: 0.7;
  transition-duration: 0.2s;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li ul {
  margin-top: 0;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li.has-children.active {
  padding-bottom: 0;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li:hover > a {
  color: #05264E;
  padding-left: 3px;
  transition-duration: 0.2s;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .categories-dropdown-wrap ul li a {
  padding: 5px 15px;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap {
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #E0E6F7;
  margin: 17px 0 30px 0;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info {
  position: relative;
  margin-bottom: 13px;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info:last-child {
  margin-bottom: 0;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info a {
  font-size: 14px;
  display: block;
  font-weight: 500;
  color: #05264E;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info a:hover {
  color: #05264E;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info a i {
  font-size: 14px;
  color: #05264E;
  margin-right: 8px;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown {
  margin-top: 5px;
  display: none;
  background-color: transparent;
  box-shadow: none;
  padding: 10px 0 0 0;
  width: 100%;
  z-index: 11;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li {
  padding-bottom: 10px;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li:last-child {
  padding-bottom: 0px;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li a:hover {
  color: #05264E;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info:hover > a {
  color: #05264E;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .site-copyright {
  font-size: 12px;
  color: #4F5E64;
}
.mobile-search form {
  background-color: #f2f3f4;
  border-radius: 8px;
  height: 44px;
  padding: 0px 15px 0px 44px;
  position: relative;
}
.mobile-search form {
  border: 0;
  background-color: transparent;
  width: 100%;
  height: 43px;
}
.mobile-search form i {
  position: absolute;
  left: 18px;
  top: 14px;
  font-size: 18px;
  color: #4F5E64;
}

.mobile-social-icon h6 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 30px;
}
.mobile-social-icon a {
  text-align: center;
  font-size: 14px;
  margin-right: 5px;
  transition-duration: 0.5s;
  height: 30px;
  width: 30px;
  display: inline-flex;
  background: #efeaff;
  border-radius: 30px;
  line-height: 1;
  align-content: center;
  justify-content: center;
}
.mobile-social-icon a img {
  max-width: 18px;
}
.mobile-social-icon a img:hover {
  opacity: 0.8;
}
.mobile-social-icon a:hover {
  transform: translateY(-2px);
  transition-duration: 0.5s;
  margin-top: -2px;
}
.mobile-social-icon a:last-child {
  margin-right: 0;
}

.mobile-account {
  margin: 15px 0;
  padding: 30px 0 20px 0;
  border-top: thin solid #E0E6F6;
}
.mobile-account h6 {
  font-weight: 600;
  font-size: 18px;
}
.mobile-account ul li {
  padding: 13px 0;
}
.mobile-account ul li a {
  font-size: 15px;
  line-height: 1;
  text-transform: capitalize;
  font-weight: 500;
  position: relative;
  display: inline-block;
  color: #253D4E;
  transition-duration: 0.2s;
}
.mobile-account ul li:hover a {
  padding-left: 3px;
  transition-duration: 0.2s;
  color: #05264E;
}

.btn-expanded {
  background: #ffffff url(../imgs/page/dashboard/icon-arrow-left.svg) no-repeat center;
  height: 30px;
  width: 30px;
  border: 1px solid #E0E6F7;
  border-radius: 50%;
  position: absolute;
  top: -15px;
  right: -16px;
  padding: 0px;
  z-index: 1234;
}

.btn-collapsed {
  background: #ffffff url(../imgs/page/dashboard/icon-arrow-right.svg) no-repeat center;
}

@media (max-width: 374.98px) {
  .image-profile {
    max-width: 100%;
    width: 100%;
  }
  .box-profile-image {
    flex-wrap: wrap;
  }
  .box-profile-image .info-profile {
    width: 100%;
    margin-top: 20px;
  }
  .box-border {
    padding: 1px 0px 3px 5px;
  }
  .dropdown-sort .dropdown-toggle i {
    margin: -1px 0px 0px 0px;
  }
  .box-border.mr-10 {
    margin-right: 2px !important;
  }
  .box-view-type {
    margin-left: 1px;
  }
}
@media (min-width: 1400px) {
  .container.wide {
    max-width: 1544px;
  }
}
/*OTHER SCREEN*/
@media screen and (min-width: 1200px) and (max-width: 1440px) {
  .header-right {
    display: none;
  }
}
.ml-auto {
  margin-left: auto;
}
.mr-2 {
  margin-right: 10px;
}
.p-16 {
  padding: 16px;
}
.px-16{
  padding-left: 16px;
  padding-right: 16px;
}
.ml-auto {
  margin-left: auto;
}
.cursor-pointer {
  cursor: pointer;
}

select.form-control {
  min-height: 54px;
}

/*# sourceMappingURL=style.css.map */