/* variables */
:root {
	--main-color: #d5686c;
	--second-color: #617b91;
	--third-color: #e5eff5;
	--forth-color: #95A9BA;
	--fifth-color: #F6F9FB;
	--main-transition: all .25s ease-in-out 0s;
	--second-transition: all .25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
	--main-font-family: 'sf', sans-serif;
	/* --second-font-family: 'Nunito', sans-serif; */
}

/* reset */
::-moz-selection {
  color: #fff;
  background: var(--main-color);
}
::selection {
	color: #fff;
	background: var(--main-color);
}
*,
*::after,
*::before {
	box-sizing: border-box;
}
body {
	font-family: var(--main-font-family);
	font-size: 14px;
	color: var(--second-color);
    font-weight: 400;
    transition: var(--main-transition);
    background-color: var(--fifth-color);
    padding: 0;
    margin: 0;
}
h1,h2,h3,h4,h5,h6 {
    font-weight: 400;
}
a, a:hover {
	text-decoration: none;
}
a:focus {
	outline: 0;
}
.container {
    width: 1680px;
    max-width: 100%;
}
.col-2.w-20 {
    width: 20%;
}
.btn-check:focus + .btn, .btn:focus {
    outline: 0;
    box-shadow: none;
}
hr {
    margin: 20px 0;
    background-color: #eceef0;
    opacity: 1;
    border: 0;
    border-top: 1px solid #eceef0;
}

/* backgrounds */
.main-bg-color {
	background: var(--main-color);
    color: #fff;
}
.second-bg-color {
	background: var(--second-color);
    color: #fff;
}
.third-bg-color {
	background: var(--third-color);
    color: #fff;
}
.forth-bg-color {
	background: var(--forth-color);
    color: #fff;
}
.fifth-bg-color {
	background: var(--fifth-color);
    color: #fff;
}
.black-bg-color {
	background: #000;
}
.white-bg-color {
	background: #fff;
}
.gray-bg-color {
	background: #c4ccd5;
}
.green-bg-color {
	background: #91B48E;
}

/* colors */
.main-color {
	color: var(--main-color);
}
.second-color {
	color: var(--second-color);
}
.third-color {
	color: var(--third-color);
}
.forth-color {
	color: var(--forth-color);
}
.fifth-color {
	color: var(--fifth-color);
}
.black-color {
	color: #000;
}
.white-color {
	color: #fff;
}
.gray-color {
	color: #c4ccd5;
}

/* scrollbar */
::-webkit-scrollbar-track,
::-moz-scrollbar-track,
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px transparent;
	box-shadow: inset 0 0 6px transparent;
	background-color: transparent;
    border-radius: 10px;
    border: 6px solid #c7cccf;
    height: 6px;
}
::-webkit-scrollbar {
	width: 5px;
	background-color: #fff;
    border-radius: 10px;
    border: 6px solid #e1e6e9;
    height: 6px;
}
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    border: 6px solid #c7cccf;
    height: 6px;
}
* {
	scrollbar-color: #c7cccf transparent;
	scrollbar-width: thin;
}


/* headings */
h1 {
    font-size: 33px;
    margin: 0;
}
h2 {
    font-size: 32px;
    margin: 0;
}
h3 {
    font-size: 31px;
    margin: 0;
}
h4 {
    font-size: 25px;
    margin: 0;
}
h5 {
    font-size: 22px;
    margin: 0;
}
h6 {
    font-size: 19px;
    margin: 0;
}
h1 .desc {
    color: #c5ccd4;
    font-size: 14px;
    line-height: 1.4;
    display: inline-block;
    font-weight: 700;
    padding-left: 5px;
}
h2 .desc {
    color: #c5ccd4;
    font-size: 14px;
    line-height: 1.4;
    display: inline-block;
    font-weight: 700;
    padding-left: 5px;
}
h3 .desc {
    color: #c5ccd4;
    font-size: 14px;
    line-height: 1.4;
    display: inline-block;
    font-weight: 700;
    padding-left: 5px;
}
h4 .desc {
    color: #c5ccd4;
    font-size: 14px;
    line-height: 1.4;
    display: inline-block;
    font-weight: 700;
    padding-left: 5px;
}
h5 .desc {
    color: #c5ccd4;
    font-size: 14px;
    line-height: 1.4;
    display: inline-block;
    font-weight: 700;
    padding-left: 5px;
}
h6 .desc {
    color: #c5ccd4;
    font-size: 14px;
    line-height: 1.4;
    display: inline-block;
    font-weight: 700;
    padding-left: 5px;
}

/* spacing */
.p-50 {
    padding: 50px;
}
.p-30 {
    padding: 30px !important;
}
.pr-5 {
    padding-right: 5px;
}
.mb-15 {
    margin-bottom: 15px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-45 {
    margin-bottom: 45px;
}
.mb-50 {
    margin-bottom: 50px;
}
.mb-60 {
    margin-bottom: 60px;
}
.mb-70 {
    margin-bottom: 70px;
}
.mt-60 {
    margin-top: 60px;
}
.mt-300 {
    margin-top: 300px;
}
.ml-auto {
    margin-left: auto;
}
.ml-right {
    margin-right: auto;
}
.mw-800 {
    width: 800px !important;
    max-width: 100%;
    margin: auto;
}
.mw-960 {
    width: 960px !important;
    max-width: 100%;
    margin: auto;
}
.mw-1190 {
    width: 1190px !important;
    max-width: 100%;
    margin: auto;
}
.mw-1200 {
    width: 1200px !important;
    max-width: 100%;
    margin: auto;
}
.min-vh-100 {
    min-height: 100vh;
}
.h-685 {
    height: 685px;
    overflow-y: scroll;
}
.h-1030 {
    height: 1030px;
    overflow-y: scroll;
}


input.error {
    border-color: red;
  }
  label.error {
    position: absolute;
    top: 101%;
    right: 0;
    font-size: 12px;
    color: red;
  }
  select.error + label.error {
    top: calc(100% - 10px);
  }
  label.error + .select2 .select2-selection__rendered {
    border-color: red;
  }

/* buttons */
.btn {
	font-size: 12px;
	padding: 8px 25px;
	text-decoration: none;
	border: 1px solid rgba(255,255,255,0);
	display: inline-flex;
	transition: var(--main-transition);
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	align-items: center;
	justify-content: center;
    border-radius: 5px;
    cursor: pointer;
}
.btn.with-icon img {
	margin-left: 5px;
	transition: var(--main-transition);
}
.btn.main-bg-color {
    color: #fff;
}
.btn.green-bg-color {
    color: #fff;
}
.btn.main-bg-color:hover {
	background-color: rgba(255,255,255,0);
	border-color: var(--main-color);
    color: var(--main-color);
}
.btn.with-icon:hover img {
	transform: translateX(10px);
}
.btn.rounded-circle-btn {
    border-radius: 50%;
    display: flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.btn.rounded-btn {
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.btn.small {
    width: 35px;
    height: 35px;
    font-size: 16px;
    text-align: center;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn.big {
    padding: 0 17px;
    height: 35px;
    white-space: nowrap;
}
.btn.border-btn {
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e6eff5;
    color: var(--second-color);
}
.btn.border-btn.small {
    width: 35px;
    height: 35px;
    padding: 0;
}
.btn.border-btn:hover {
    border-color: var(--second-color);
}
.btn.badge:hover {
  background: #c4ccd5;
  opacity: 1 !important;
}
.navbar .dropdown-item.logout-btn {
    color: var(--forth-color);
}
#quantity input {
    width: 55px;
    text-align: center;
    font-size: 19px;
    border: none;
}
#quantity {
    margin-bottom: 15px;
}
#quantity .controls {
    background: #d1d3d4;
    padding: 5px 14px;
    border-radius: 20px;
    color: #000;
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--main-transition);
}
#quantity .controls:hover {
    opacity: .7;
}
.close-btn {
    position: absolute;
    top: 50%;
    right: 10px;
    color: #000;
    cursor: pointer;
    transform: translateY(-50%);
    z-index: 10;
    transition: var(--main-transition);
    line-height: 1;
    text-decoration: none;
}
.close-btn:hover {
    opacity: .7;
}
.btn.second-bg-color:hover {
    opacity: .7;
}
.btn.gray-bg-color:hover {
    opacity: .7;
}
.btn.link {
    padding: 0;
}
.btn.link:hover {
    text-decoration: underline;
    opacity: .7;
}
.btn.submit-btn {
    font-size: 18px;
    padding: 15px 25px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0);
    display: inline-block;
    transition: var(--main-transition);
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
}
.go-car-txt {
    margin-right: auto;
    margin-left: 10px;
    color: var(--main-color);
}
.rounded-btn {
    border-radius: 8px;
}

/* popups */
#log-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	background: #000;
	opacity: 0.71;
	display: none;
}
.popup-wrap {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100100;
	transition: all 0.25s ease-in-out;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.popup-wrap.show-popup {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.popup.show-popup {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, -50%) scale(1);
}
.popup-wrap-content {
	position: relative;
	height: 100vh;
	overflow-y: auto;
}
.popup {
	position: absolute;
	top: 50%;
	transition: all 0.25s ease-in-out;
	left: calc(50% - 21px);
	transform: translate(-50%, -50%) scale(0.85);
	z-index: 40010;
	max-width: 600px;
	width: 100%;
	background: #fff none no-repeat center center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.popup-header {
    padding: 10px;
    position: relative;
}
.popup-body {
    padding: 10px;
    border-top: 1px solid #dadada;
    border-bottom: 1px solid #dadada;
}
.popup-footer {
	padding: 10px;
}
.close-popup {
	position: absolute;
	top: 50%;
	right: 20px;
	cursor: pointer;
	transform: translateY(-50%);
	font-size: 30px;
}
.close-popup:hover {
	opacity: 0.7;
}
.cart-info {
    display: block;
    width: 20px;
    height: 20px;
    background: blue;
    color: #fff;
    font-size: 14px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 10px;
}

/* form-group */
.form-group {
    margin-bottom: 22px;
    position: relative;
}
input {
    width: 100%;
    padding: 20px;
    border: 1px solid #eceef0;
    margin-bottom: 0px;
    position: relative;
    z-index: 12;
    border-radius: 5px;
    outline: none;
    font-size: 14px;
    /* text-transform: uppercase;*/
    background-color: rgba(255,255,255,0);
    color: var(--second-color);
}
textarea {
    width: 100%;
    padding: 20px;
    border: 1px solid var(--third-color);
    margin-bottom: 0px;
    position: relative;
    z-index: 12;
    border-radius: 5px;
    font-size: 14px;
    /* text-transform: uppercase; */
    color: var(--second-color);
    font-family: var(--main-font-family);
    resize: none;
}
.custom-input {
    font-weight: 700;
}
.form-group .custom-input span {
    color: #e14747;
}
.form-group .desc {
    color: #c5ccd4;
    font-size: 14px;
    line-height: 1.4;
    display: inline-block;
    font-weight: 700;
    margin-left: 5px;
}

/* .field_error {
    display: none;
} */
.custom-textarea:placeholder-shown + .custom-input-placeholder,
.custom-input:placeholder-shown + .custom-input-placeholder {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: -1;
    color: #888;
    transform: translateY(0px);
}
.custom-input-placeholder {
    position: unset;
    left: 0;
    top: 0;
    z-index: 1;
    transform: unset;
    transition: all 0.25s cubic-bezier(.13,.56,.38,.89) 0s;
    color: var(--second-color);
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'sf';
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}
.custom-input-placeholder .required {
    color: #e14747;
}
.custom-submit {
    width: 100%;
    border: none;
    background: #000;
    color: #fff;
    padding: 10px;
    transition: all 0.25s ease-in-out 0s;
}
.custom-submit:hover {
    background: #555;
    color: #fff;
}
.input-icon {
    position: relative;
    margin-bottom: 10px;
}
.input-icon img {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    height: 16px;
}
.input-icon.adding-input-holder {
    display: none;
}
.input-icon.adding-input-holder.active {
    display: block;
}
.add-btn-holder .btn {
    text-align: right;
    padding: 11px 13px;
    border: 1px solid #d5686c;
    color: var(--second-color);
    border-radius: 5px;
    margin-top: 10px;
}
.add-btn-holder .btn.main-bg-color {
    color: #fff;
}
.add-btn-holder .btn.main-bg-color:hover {
    color: var(--main-color);
}
.adding-input-holder img {
    cursor: pointer;
    z-index: 15;
}

/* custom radio box */
#radio-box {
    margin: 10px 0;
    padding-left: 0;
}
#radio-box label{
    color: #535353;
    font-size: 19px;
    line-height: 1.4;
    margin-bottom: 0;
}
/* Base for label styling */
[type="radio"]:not(:checked),
[type="radio"]:checked {
  position: absolute;
  left: -9999px;
}
[type="radio"]:not(:checked) + label,
[type="radio"]:checked + label {
    cursor: pointer;
    font-size: 16px;
    padding-left: 40px;
    text-align: right;
    position: relative;
}
/* radio aspect */
[type="radio"]:not(:checked) + label::before, [type="radio"]:checked + label::before {
    background: none repeat scroll 0 0 #fff;
    border: 1px solid #000;
    border-radius: 50%;
    content: "";
    height: 27px;
    left: 0;
    margin-top: -2px;
    position: absolute;
    top: 0;
    width: 27px;
}
/* checked mark aspect */
[type="radio"]:not(:checked) + label::after, [type="radio"]:checked + label::after {
    background: none repeat scroll 0 0 var(--main-color);
    content: "";
    font-size: 14px;
    height: 30px;
    left: -2px;
    margin-top: 3px;
    position: absolute;
    top: -7px;
    transition: all 0.2s ease 0s;
    width: 30px;
    border-radius: 2px;
    border-radius: 50%;
}
/* checked mark aspect changes */
[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
[type="radio"]:checked + label:after {
  opacity: 1;
  transform: scale(.5);
}
/* disabled checkbox */
[type="radio"]:disabled:not(:checked) + label:before,
[type="radio"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
[type="radio"]:disabled:checked + label:after {
  color: #999;
}
[type="radio"]:disabled + label {
  color: #aaa;
}
@media only screen and (min-width: 1030px) {
#radio-box {
	float: left;
	width: 100%;
	margin: 6px 0;
	box-sizing: border-box;
}
}

/* custom checkboox */
.custom-checkbox-container {
    display: flex;
    position: relative;
    padding-left: 40px;
    margin-bottom: 0;
    cursor: pointer;
    user-select: none;
    margin: 10px 0;
    align-items: center;
    height: 30px;
}
.custom-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 27px;
    width: 27px;
    border: 1px solid var(--third-color);
    border-radius: 5px;
}
.custom-checkbox-container:hover input ~ .checkmark {
    background-color: transparent;
}
.custom-checkbox-container input:checked ~ .checkmark {
    background-color: transparent;
    border: 1px solid var(--third-color);
    border-radius: 5px;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.custom-checkbox-container input:checked ~ .checkmark:after {
    display: block;
}
.custom-checkbox-container .checkmark::after {
    left: 12px;
    top: 12px;
    transform: translate(-50%, -50%);
    background: var(--main-color);
    width: 9px;
    height: 9px;
    border-radius: 2px;
}

/* custom switch */
.custom-switch-holder .switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 40px;
}
.custom-switch-holder .switch input {
      display:none;
  }
.custom-switch-holder .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    -webkit-transition: .4s;
    transition: .4s;
    border: 1px solid #c4ccd4;
}
.custom-switch-holder .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 8px;
    bottom: 6px;
    background-color: var(--main-color);
    -webkit-transition: .4s;
    transition: .4s;
}
.custom-switch-holder input:checked + .slider {
    background-color: var(--main-color);
}
.custom-switch-holder input:focus + .slider {
    box-shadow: 0 0 1px var(--main-color);
}
.custom-switch-holder  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}
.custom-switch-holder input:checked + .slider::before {
    background-color: #fff;
}
/* Rounded sliders */
.custom-switch-holder  .slider.round {
    border-radius: 34px;
}
.custom-switch-holder .slider.round:before {
    border-radius: 50%;
}
.custom-switch-holder input:checked + .slider {
    border-color: var(--main-color);
}

/* loader */
body.loaded .loader {
	opacity: 0;
    pointer-events: none;
    z-index: -1;
}
.loader {
	position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--second-color);
    align-items: center;
    width: 100%;
    height: 100%;
    transition-duration: 2s;
    opacity: 1;
}

/* scrolled page */
body.scrolled {
    padding-top: 0;
}
body.scrolled .navbar {
    top: 0;
}
body.scrolled .shop-side-filter {
    padding-top: 90px;
}
body.scrolled .navbar-brand.desk img {
    height: 45px;
}
body.scrolled .nav-item.dropdown #navbarDropdown {
    padding-top: 2px;
    padding-bottom: 2px;
}
body.scrolled .navbar-nav .dropdown-menu {
    top: 27px;
}

/* helper classes */
.top-10 {
	top: 10px;
}
.rounded {
    border-radius: 8px;
}
.rounded-circle {
    border-radius: 50%;
}
.text-left {
    text-align: left !important;
}
.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}
.bold {
    font-weight: 700;
}
.justify-content-unset {
    justify-content: unset !important;
}
.box-shadow-unset {
    box-shadow: unset !important;
}

/* animations */
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

/* top banner section */
.banner-container {
    background: #e7eef2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.banner-container p,
.banner-container a {
    margin: 0;
    padding: 17px 0;
    font-size: 14px;
    color: var(--second-color);
}

/* header */
.navbar {
    display: flex;
    width: 100%;
    background-color: #fff;
    padding: 25px 75px;
    align-items: center;
}
.navbar .navbar-brand {
    margin-right: 50px;
}
.navbar .navbar-nav {
    display: flex;
    align-items: center;
    list-style: none;
    padding-left: 0;
}
.navbar-nav .nav-item {
    margin-right: 15px;
    position: relative;
}
.navbar-nav .nav-item:last-of-type {
    margin-right: 0;
}
.alert_num {
	background: #d5686c;
	position: absolute;
	top: 3px;
	right: 3px;
	line-height: 1;
	font-size: 10px;
	color: #fff;
	width: 12px;
	height: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
}
.menu-search-form {
    display: flex;
    position: relative;
    width: 100%;
    max-width: 23vw;
}
.menu-search-form input {
    font-size: 12px;
    padding: 10px;
    font-family: 'sf';
    font-weight: 700;
}
.menu-search-form button {
    background: none;
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 10;
    transform: translateY(-50%);
    padding: 8px 15px;
}
.navbar .dropdown-toggle {
    position: relative;
}
.navbar .dropdown-menu {
    position: absolute;
    right: 0;
    top: 45px;
    min-width: 200px;
    background: #fff;
    padding-left: 0;
    list-style: none;
    border-radius: 8px;
    border: 1px solid #e6eff5;
    z-index: 10;
    display: none;
}
.navbar .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--second-color);
    text-decoration: none;
    padding: 15px;
    font-size: 10px;
    font-family: 'sf';
    font-weight: 700;
    border-bottom: 1px solid #e6eff5;
}
.navbar .dropdown-toggle::before {
    position: absolute;
    bottom: -15px;
    left: 50%;
    background: url(../images/menu-drop-down-arrow-icon.svg) center center;
    width: 10px;
    height: 10px;
    z-index: 10;
    transform: translateX(-50%);
    background-size: 10px 10px;
}
.navbar .open.dropdown-toggle::before {
    content: "";
}
.navbar .dropdown-item:hover {
    background: var(--fifth-color);
}
.navbar-collapse {
    display: flex;
}
.vertical-divider {
    margin-right: 30px;
    border: 0;
    border-right: 1px solid #E6EFF5;
    margin: 0 30px;
}


/* main section */
main {
    padding: 40px 50px;
    min-height: calc(100vh - 156px);
}

/* text content */
.lead-txt p {
    font-weight: 500;
}

/* panels */
.panel-item-wrap {
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 20px 20px;
}
.panel-item h3 {
    color: var(--main-color);
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 24px;
    font-family: 'sf';
    font-weight: 700;
    margin-top: 0;
    width: 100%;
}
.panel-item h3.second-color {
    color: var(--second-color);
}
.panel-item h3.small {
    color: var(--second-color);
    font-size: 18px;
}
.panel-body {
    padding: 50px 50px 50px 50px;
}
.panel-body hr {
    max-width: calc(100% - var(--bs-gutter-x)) !important;
    margin: 40px auto;
}
.panel-body h4 {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--main-color);
    font-family: 'sf';
    font-weight: 700;
    margin-bottom: 35px;
}
.panel-item .heading-container {
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #eceef0;
    padding: 22px 25px;
    justify-content: space-between;
}
.panel-item .heading-container h1 {
    font-size: 24px;
    color: var(--main-color);
    text-transform: uppercase;
    font-family: 'sf';
    font-weight: 700;
}
.panel-item .heading-container h1.second-color {
    color: var(--second-color);
}
.heading-container .btn-container {
    display: flex;
    align-items: center;
}
.heading-container .btn-container a {
    margin-right: 10px;
}
.heading-container .btn-container a:last-of-type {
    margin-right: 0;
}

.collapse-holder {
    display: none;
}

.custom-switch-holder {
    display: flex;
    align-items: center;
}
.custom-switch-holder .desc{
    color: #c5ccd4;
    font-size: 14px;
    line-height: 1.4;
    display: inline-block;
    margin-left: 5px;
    text-transform: uppercase;
    font-family: 'sf';
    font-weight: 700;
}
.panel-item-wrap .heading-container .img-holder {
  margin-right: 30px;
}
.panel-item-wrap .heading-container .img-holder img {
  max-width: 130px;
}
/* sortable containers */
.sortable-items-container .sortable {
  padding-left: 0;
    margin: 0;
}
.sortable .sortable-item {
  display: flex;
    align-items: center;
    border-bottom: 1px solid var(--third-color);
    padding: 50px 30px;
}
.sortable .sortable-item .icon-holder{
  cursor: grab;
}
.sortable .ui-sortable-helper {
  background: #fff;
}
.sortable .sortable-item .icon-holder {
  margin-right: 30px;
}
.sortable .sortable-item .icon-holder img{
  width:14px;
}
.sortable .sortable-item .img-holder {
  margin-right: 20px;
}
.sortable .sortable-item h4 a{
  font-size: 16px;
    color: var(--main-color);
    text-decoration: none;
    display: block;
}
.sortable .sortable-item .btn-holder {
  margin-left: auto;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
}
.sortable .sortable-item .btn-holder a {
  margin: 3px 0 3px 10px;
}
.sortable .sortable-item .btn-holder a:last-of-type {
  margin-right: 0;
}

/* project items container  */
.project-items-container .project-item {
    display: flex;
    padding: 50px 30px;
    border-bottom: 1px solid var(--third-color);
}
.project-items-container .project-item .img-holder {
    margin-right: 30px;
}
.project-items-container .project-item .content-holder {
    width: 100%;
}
.project-items-container .project-item .content-holder h4 {
    font-size: 18px;
    color: var(--main-color);
    margin-bottom: 10px;
    font-family: 'sf';
    font-weight: 700;
}
.project-items-container .project-item .content-holder h6 {
    font-size: 14px;
    color: var(--forth-color);
    margin-bottom: 20px;
    font-weight: 300;
}
.project-items-container .project-item .content-holder hr {
    margin: 0 0 20px 0;
}
.project-items-container .project-item .content-holder h5 {
    font-size: 14px;
    color: var(--main-color);
    margin-bottom: 20px;
}
.project-items-container .project-item .content-holder a {
    font-size: 10px;
    color: var(--forth-color);
}
.project-items-container .project-item .content-holder p {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.project-items-container .project-item .content-holder p .badge {
    width: 25px;
    height: 25px;
    display: block;
    border-radius: 8px;
    line-height: 25px;
    font-size: 8px;
    text-align: center;
    color: #fff;
    font-family: 'sf';
    font-weight: 700;
}

/* campain details container */
.campain-details-container {
    padding: 50px;
}
.campain-details-container .campain-details-item {
    padding-bottom: 50px;
    border-bottom: 1px solid var(--third-color);
    margin-bottom: 50px;
}
.campain-details-container .campain-details-item h3 {
    font-size: 16px;
    color: var(--second-color);
    margin-bottom: 16px;
}
.campain-details-container .campain-details-item p {
    font-size: 18px;
    line-height: 1.4;
    margin-top: 0;
}
.campain-details-container .campain-details-item p:last-of-type {
    margin-bottom: 0;
}
.campain-details-container .campain-details-item ol {
    padding-left: 15px;
}
.campain-details-container .campain-details-item li {
    font-size: 18px;
    line-height: 1.4;
}
.campain-details-container .campain-details-item:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}

/* chart container */
.chart-container {
    padding-right: 5px;
}
.chart-holder #pieChart {
	/* max-width: 300px; */
    width: 100% !important;
    margin: auto;
    max-height: 300px;
}
.chart-holder {
    padding: 20px 30px 0 30px;
    border-bottom: 1px solid var(--third-color);
}
.chart-holder .heading-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--third-color);
    margin-top: 15px;
}
.chart-holder .heading-holder img {
    height: 35px;
    margin-right: 10px
}
.chart-holder .heading-holder h4 {
    font-size: 18px;
    color: var(--main-color);
    font-family: 'sf';
    font-weight: 700;
    text-transform: uppercase;
}

/* reports page */
#reports-table .sorting_1 {
    text-align: left;
}
#reports-table_wrapper .table-filters .form-group {
    width: 130px;
}

/* upload button */
.file-upload {
    display: flex;
}
.file-upload-btn {
    margin: 0;
    color: #fff;
    border: none;
    padding: 11px 17px;
    border-radius: 4px;
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s ease-in-out 0s;
    font-size: 10px;
    border: 1px solid var(--main-color);
}
.image-upload-txt-container {
    margin-top: 23px;
    margin-left: 30px;
}
.file-upload-btn:hover {
    background: transparent;
    color: var(--second-color);
    border: 1px solid var(--third-color);
}
.file-upload-btn:active {
    transition: all .2s ease;
}
.file-upload-content {
    display: none;
}
.file-upload-input {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
    border: 0;
}
.image-upload-wrap {
  position: relative;
}
.image-upload-wrap img {
  max-width: 130px;
}
.image-upload-txt-container h3 {
    color: var(--second-color);
    margin-bottom: 10px;
    font-size: 14px;
}
.image-upload-txt-container p {
    color: var(--second-color);
    margin: 0 0 15px 0;
    font-size: 14px;
}
.image-title-wrap {
    padding: 0 0 15px 0;
    color: #222;
    width: 130px;
    height: 133px;
}
.drag-text {
    text-align: center;
}
.drag-text h3 {
    font-weight: 100;
    text-transform: uppercase;
    color: #15824B;
    padding: 60px 0;
}
.file-uploaded-image,
.file-upload-image {
    width: 130px;
    height: 133px;
    margin: 0 0 20px 0;
    padding: 0;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.remove-image {
    margin: 0;
    color: #fff;
    background: var(--main-color);
    border: none;
    padding: 0;
    border-radius: 35px;
    border-bottom: 0;
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0px;
    left: 0px;
}
.remove-image:hover {
    background: #c13b2a;
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;
}
.remove-image:active {
    border: 0;
    transition: all .2s ease;
}

/* lever export page */
.lever-export-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lever-export-item .print-container {
    display: flex;
    align-items: center;
}
.lever-export-item .print-container .txt-content {
    margin-right: 20px;
}
.lever-export-item .print-container .txt-content p {
    margin: 0 0 5px 0;
}
.lever-export-item .print-container .txt-content p {
    margin: 0 0 5px 0;
}
.lever-export-item .print-container .txt-content p:last-of-type {
    margin: 0;
}
.lever-export-item .logo-holder img {
    height: 27px;
}
.lever-export-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 0;
    border-bottom: 1px solid var(--third-color);
}
.lever-export-page .panel-item-wrap .img-holder img {
    height: 70px;
}
.lever-export-page .panel-item .heading-container h1 {
    font-size: 18px;
    margin-bottom: 10px;
}
.lever-export-page .panel-item .heading-container p {
    margin: 0;
    color: var(--forth-color);
    font-size: 12px;
}
.lever-export-page .panel-item .heading-container {
    padding: 40px 0;
}
.lever-export-page main {
    padding: 0;
}
.lever-export-page .chart-holder {
    padding: 20px 0 0 0;
}
.lever-export-page .chart-holder canvas {
    height: 185px !important;
    width: auto !important;
    max-width: 100%;
    object-fit: contain;
    padding: 0 15px;
}
.lever-export-page .chart-holder #pieChart {
    height: 250px !important;
}
.lever-export-page .chart-holder #barChart2 {
    margin: 40px auto;
}
.lever-export-page .chart-holder {
    border: 1px solid var(--third-color);
}
.lever-export-page .chart-holder .heading-holder h4 {
    font-size: 14px;
}
.lever-export-page .chart-holder .heading-holder {
    padding: 29px 0;
}
.entries-section .heading-holder h3 {
    font-size: 14px;
    padding: 19px 25px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: var(--fifth-color);
    border-radius: 6px;
}
.entries-item {
    flex: 0 0 auto;
    width: 25%;
    border-left: 1px solid var(--third-color);
    padding: 0 20px;
}
.entries-item:first-of-type {
    border-left: none;
    padding-left: 10px;
}
.entries-item h6 {
    font-size: 12px;
    margin-bottom: 15px;
}
.entries-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--main-color);
    font-weight: 600;
}
.entries-item ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 15px;
}
.entries-item ul li {
    margin-bottom: 0;
}
.entries-item ul li h5 {
    font-size: 12px;
    margin-bottom: 8px;
    color: var(--forth-color);
}
.entries-item ul li p {
    font-size: 12px;
    margin: 0 0 5px 0;
    color: var(--second-color);
}
.export-footer-item {
    padding: 50px 0;
    border-top: 1px solid var(--third-color);
}
.export-footer-item .logo-holder {
    margin-bottom: 10px;
}
.export-footer-item p {
    margin: 0 0 10px 0;
    font-size: 10px;
    color: var(--forth-color);
}
.export-footer-item a {
    margin: 0;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    color: var(--second-color);
}

/* border item */
.border-item ul {
    padding-left: 0;
    list-style: none;
    margin: 0;
    border-top: 1px solid var(--third-color);
}
.border-item ul:last-of-type {
    border-bottom: 1px solid var(--third-color);
}
.border-item ul li {
    display: flex;
    align-items: center;
}
.border-item ul li p:first-of-type {
    min-width: 43%;
    padding: 20px 0;
    margin: 0;
    font-size: 16px;
}
.panel-item .heading-container h1 a {
    color: var(--main-color);
}
.postsurveys-page .panel-item .heading-holder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.postsurveys-page .panel-item .heading-holder h4 {
    margin-bottom: 0;
}
.postsurveys-page .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
    border-left: 1px solid var(--third-color);
    border-right: 1px solid var(--third-color);
}
.panel-body .gallery-content .heading-holder h5 {
    font-size: 16px;
    font-weight: 700;
}
.panel-body .gallery-content {
    padding: 30px 0;
}
.border-item ul li.d-block {
    display: block;
    padding-bottom: 10px;
}
.border-item ul li.d-block p:first-of-type {
    padding-bottom: 0;
}
.panel-body .gallery-item {
    padding: 20px 30px 30px;
    border: 1px solid var(--third-color);
}
.panel-body .gallery-content .img-container {
    position: relative;
    display: block;
}
.panel-body .gallery-content .icon-holder {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 10;
}
.panel-body .gallery-item p {
    text-align: center;
    font-size: 16px;
}

.custom-input-placeholder-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.custom-input-placeholder-container .custom-input-placeholder {
    margin-bottom: 0;
    margin-left: 10px;
}
.custom-input-placeholder-container.small .slider::before {
    height: 10px;
    width: 10px;
}
.custom-input-placeholder-container.small .switch {
    width: 25px;
    height: 16px;
}
.custom-input-placeholder-container.small .custom-switch-holder .slider::before {
    left: 2px;
    bottom: 2px;
    background-color: var(--main-color);
}
.custom-input-placeholder-container.small .custom-switch-holder input:checked + .slider {
    background-color: transparent;
}
.custom-input-placeholder-container.small .custom-switch-holder input:checked + .slider {
    border-color: var(--third-color);
}
.custom-input-placeholder-container.small .custom-switch-holder input:checked + .slider::before {
    transform: translateX(-9px);
    background-color: #91b48e;
    left: 20px;
}
.input-icon.left img {
    right: auto;
    left: 15px;
    height: 25px;
    margin-top: -2px;
}
.input-icon.left input {
    padding-left: 40px;
}
h4 .desc {
    color: var(--forth-color);
    font-size: 18px;
}
.DTFC_Cloned td {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.btn.submit-btn {
    font-size: 18px;
    padding: 15px 25px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0);
    display: inline-block;
    transition: var(--main-transition);
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
}
.go-car-txt {
    margin-right: auto;
    margin-left: 10px;
    color: var(--main-color);
}
.rounded-btn {
    border-radius: 8px;
}
upload {
    display: flex;
}
.file-upload-btn {
    margin: 0;
    color: #fff;
    border: none;
    padding: 11px 17px;
    border-radius: 4px;
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s ease-in-out 0s;
    font-size: 10px;
    border: 1px solid var(--main-color);
}
.image-upload-txt-container {
    margin-top: 23px;
    margin-left: 30px;
}
.file-upload-btn:hover {
    background: transparent;
    color: var(--second-color);
    border: 1px solid var(--third-color);
}
.file-upload-btn:active {
    transition: all .2s ease;
}
.file-upload-content {
    display: none;
}
.file-upload-input {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
    border: 0;
}
.add-btn-holder {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	flex-direction: column;
}
.img-fluid.deliverables-remove {
	position: absolute;
	bottom: 20px;
	right: 20px;
	z-index: 1111;
    cursor: pointer;
}


/* responsive */
@media only screen and (max-width: 1680px) {
    .table-filters {
        display: block !important;
    }
    .table-filters .custom-btns-container {
        margin-bottom: 10px;
        margin-left: 0 !important;
    }
    .dataTables_wrapper .dataTables_info {
        margin-bottom: 10px;
    }
}
@media only screen and (max-width: 1440px) {
    .panel-item .heading-container {
        padding: 20px 20px;
    }
    .sortable .sortable-item .btn-holder {
      display: block;
    }
    .sortable .sortable-item .btn-holder a {
      margin-right: 0;
        margin-bottom: 5px;
    }
    .table-filters .date-picker-container {
        width: 250px !important;
    }
    .dataTables_wrapper .dataTables_filter input {
        width: 200px !important;
    }
    .img-fluid {
        max-width: 100%;
    }
}
@media only screen and (max-width: 1366px) {
    .index-page .col-4.panel-item {
        width: 50%;
        margin-bottom: 30px;
    }
    .index-page .col-4.panel-item:last-of-type {
        width: 100%;
    }
    table.dataTable thead .sorting {
        min-width: 110px;
    }
    .table-filters .form-group {
        width: 120px !important;
    }
}
@media only screen and (max-width: 1024px) {
    .panel-item.col-4 {
        flex: 0 0 auto;
        width: 50%;
    }
    .panel-item.col-8 {
        flex: 0 0 auto;
        width: 50%;
    }
    .dataTables_wrapper .dataTables_info {
        display: none;
    }
    .col-6.offset-3.panel-item {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }
    table.dataTable tbody th, table.dataTable tbody td {
        padding: 14px 10px;
    }
}
