﻿:root {
    --green: #177246;
    --red: #c0192d;
    --grey: #646464;
}

/*::-webkit-scrollbar-track {
    background-color: #e1e1e1;
}

::-webkit-scrollbar {
    width: 8px;
    background-color: #e1e1e1;
}

::-webkit-scrollbar-thumb {
    background-color: #8b8b8b;
}*/

::selection {
    background: var(--green);
    color: #fff;
}

::-moz-selection {
    background: var(--green);
    color: #fff;
}

:focus {
    outline: none;
}

a {
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

a {
    color: unset;
}

a:hover, a:focus, a:visited {
    text-decoration: none;
}

a:hover {
    color: var(--green);
}

img {
    transition: all .4s ease-in-out;
}

.hiding {
    opacity: 0;
}

.visible {
    opacity: 1;
}

.bg-grey {
    background-color: #fafafa;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: 'Libre Franklin', sans-serif;
    /*opacity: 0;*/
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    overflow-x: hidden;
}

h1, h2, h4 {
    font-family: 'Prata', sans-serif;
}

h1 {
    font-size: 40px;
    color: #ffffff;
}

h2 {
    font-size: 30px;
    color: var(--red);
}

h3 {
    font-size: 22px;
    color: #ffffff;
    font-weight: 300;
}

h4 {
    font-size: 22px;
    color: var(--red);
}

.black {
    color: #212529;
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-200 {
    padding-bottom: 200px;
}

.mb-90 {
    margin-bottom: 95px;
}

.mt-70 {
    margin-top: 70px;
}

.f-30 {
    font-size: 30px !important;
}

.f-35 {
    font-size: 35px !important;
}

.f-22 {
    font-size: 22px !important;
}

.br-5 {
    border-radius: 50px;
}

header {
    position: fixed;
    top: 0;
    background-color: #ffffff;
    z-index: 999;
    height: 82px;
}

main {
    margin-top: 82px;
}

.logo {
    width: 190px;
}

.logo-rb {
    margin-left: 30px;
    width: 65px;
}

.input-search {
    background-color: #eaf5f0;
    border-radius: 5px 5px 5px 5px;
    height: 50px;
    padding: 0 15px;
    width: 100%;
    border: none;
}

.has-search .form-control-feedback {
    z-index: 2;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.975rem;
    text-align: center;
    pointer-events: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.has-search .form-control {
    padding-left: 1.375rem;
}

.search-btn {
    background-color: var(--green);
    border: none;
    position: absolute;
    width: 54px;
    height: 50px;
    border-radius: 0 5px 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    right: 15px;
    font-size: 16px;
}

.form-control-feedback img, .icon-account {
    width: 20px;
    height: 20px;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: var(--green);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(24 175 135 / 25%)
}

.home {
    background-image: url(../img/home2.png);
    height: 710px;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

.services {
    background: rgb(23, 114, 70);
    background: linear-gradient(0deg, rgba(23, 114, 70, 0.1) 0%, rgba(17, 93, 56, 0) 100%);
}

.subtitle {
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    display: inline-block;
    position: relative;
}

.subtitle:before {
    content: '';
    position: absolute;
    left: 0px;
    bottom: -2px;
    width: 100%;
    border-bottom: 2px solid var(--green);
}

.subdesc {
    font-size: 14px;
    color: var(--grey);
    line-height: 22px;
}

.subdesc ul li {
    font-size: 14px;
    color: var(--grey);
    line-height: 22px;
}

.services img {
    position: relative;
}

.w-83 {
    width: 83%;
}

.service {
    width: 100%;
    height: 310px;
    background-color: #ffffff;
}

.service-title {
    color: #ffffff;
    background-color: #177246;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.service-desc {
    font-size: 14px;
    color: #818181;
    margin-top: 12px;
    line-height: 22px;
    padding: 0 20px;
}

.btn-discover {
    color: var(--green);
}

.dedicated-block {
    display: block;
    text-align: left;
    box-shadow: 0 5px 18px 4px rgba(100, 100, 100, 0.2);
    -webkit-box-shadow: 0 5px 18px 4px rgba(100, 100, 100, 0.2);
    -moz-box-shadow: 0 5px 18px 4px rgba(100, 100, 100, 0.2);
}

.dedicated-content {
    padding: 45px 35px 77px;
    max-height: 173px;
}

.dedicated-block h3 {
    font-size: 18px;
}

.dedicated-block h5 {
    color: var(--green);
    font-size: 15px;
}

.dedicated-block h3 {
    color: #000000;
}

.btn-circle {
    position: absolute;
    bottom: -35px;
    left: 50%;
    width: 65px;
    height: 65px;
    background-color: #1c995d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
}

.btn-circle:hover {
    background: #22c778;
}

.arrow {
    width: 22px;
}

.pink {
    height: 575px;
    background-color: #d05a82;
    display: flex;
    align-items: center;
}

.pink h2 {
    font-size: 60px;
    font-family: 'Libre Franklin', sans-serif;
    color: #ffffff;
    font-weight: bold;
}

.btn-square {
    padding: 18px 16px;
    color: #000000;
    background-color: #ffffff;
    position: relative;
    width: 210px;
    border: none;
}

.slick-initialized .slick-slide {
    margin-bottom: 40px;
}

.doctors-block {
    background-color: var(--green);
    width: 100%;
    height: 233px;
    margin: 15px;
    position: relative;
    transition: all .3s ease-in-out;
}

.btn-square:hover {
    background-color: #dedede;
    color: #000000;
}

.btn-pdf {
    padding: 18px 26px;
    position: relative;
}

.form-control-square {
    padding: 18px 16px;
    height: auto;
}

.doctors-block:hover, .btn-square-green:hover {
    background-color: #115032;
    color: #ffffff;
    transition: all .3s ease-in-out;
}

.doctors-block-disabled {
    opacity: 0.5;
}

.doctors-block-disabled:hover {
    background-color: var(--green);
}

.doctors-block.block-1, .doctors-block.block-4 {
    border-radius: 50px 0 50px 0;
}

.doctors-block.block-2, .doctors-block.block-3 {
    border-radius: 0 50px 0 50px;
}

.doctors-block.block-3 {
    background-image: url(../img/doctor.jpg);
    background-size: cover;
    background-position-x: -20px;
}

.doctors-icon {
    width: 65px;
    height: 65px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 25px;
    bottom: 20px;
}

.doctors-icon img {
    height: 43px;
}

footer {
    background-color: var(--green);
    padding: 75px 0 0;
}

footer .search-btn {
    background-color: #1c995d;
}

.subfooter {
    background-color: #323232;
}

footer ul li a {
    padding: 15px;
}

footer ul li {
    border-right: 1px solid #ffffff;
}

footer ul li:last-child {
    border-right: 0;
}

.section-page {
    background-image: url(../img/section.png);
    background-size: cover;
    height: 360px;
}

.breadcrumb {
    background-color: unset;
    font-size: 14px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #ffffff;
}

.sanitary-services {
    top: 245px;
    right: 165px;
    box-shadow: 0 5px 18px 4px rgba(100, 100, 100, 0.2);
    -webkit-box-shadow: 0 5px 18px 4px rgba(100, 100, 100, 0.2);
    -moz-box-shadow: 0 5px 18px 4px rgba(100, 100, 100, 0.2);
}

.first-consult {
    width: 145px;
    height: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 45px;
    left: 50px;
}

.first-consult .doctors-icon {
    position: unset;
}

.btn-square-green {
    color: #ffffff;
    background-color: var(--green);
}

.arrow-small {
    width: 13px;
}

.fitness .dedicated-content {
    padding: 40px 35px 40px;
}

.fitness .dedicated-block {
    height: 100%;
}

.dedicated-block:before {
    content: '';
    position: absolute;
    left: 15px;
    bottom: 0px;
    width: 92%;
    border-bottom: 2px solid #bf1a2c;
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.dedicated-block:hover:before {
    -ms-transform: scale(1);
    transform: scale(1);
}

.dedicated-block:hover .btn-circle {
    background: #22c778;
}

.scale {
    position: relative;
    overflow: hidden;
}

.scale:hover img, .dedicated-block:hover .dedicated-img img {
    opacity: 0.70;
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transition: all .7s ease-in-out;
}

.dedicated-img {
    position: relative;
    overflow: hidden;
}

.doctors-block.first-consult:hover {
    background-color: var(--green);
}

.location {
    font-size: 18px;
}

.prices {
    font-size: 16px;
}

.prices span {
    color: var(--green);
}

.btn-square span {
    position: absolute;
    right: 20px;
}

.l-115 {
    left: -115px;
    bottom: 80px;
}

.slick-slide img {
    display: block;
    transition: all .4s ease-in-out;
}

.contacts h5 {
    font-size: 18px;
}

.contacts span img {
    width: 40px;
    margin-bottom: 18px;
}

.fitness.detail img {
    height: 175px;
}

.user-area {
    width: 100%;
    margin: 0 auto;
}

label {
    display: block;
    text-align: left;
}

.form-check-input {
    right: 5px;
}

.text-green {
    color: var(--green);
}

.checkmark.grey {
    position: absolute;
    top: 3px;
    left: 15px;
    height: 18px;
    width: 18px;
    background-color: #eee;
}

.checkmark.grey:after {
    left: 9px;
    top: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkmark.grey:after {
    content: "";
    position: absolute;
    display: none;
}

.form-check input:checked ~ .checkmark:after {
    display: block;
}

input[type="checkbox"] ~ label {
    cursor: pointer;
}

.form-check input:checked ~ .checkmark {
    background-color: var(--green);
}

.form-check input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.form-check label {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-left: -10px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/*
.tour-bg{
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #00000087;
  z-index: 1000;
  display: none;
}

.tour-bg.active{
  display: block;
}

.user-area.active{
  position: absolute;
  top: 35px;
  right: 0;
  background-color: #ffffff;
}

*/

.btn-tour, .introjs-button {
    color: #fff;
    background-color: var(--green);
    border: 0;
    text-shadow: none;
}

.introjs-button:hover, .introjs-button:focus {
    border: 0;
    background-color: #177246c4;
    color: #fff;
    box-shadow: unset;
}

.introjs-skipbutton {
    position: relative;
    left: 10px;
}

.icon-cart {
    width: 28px;
    height: 28px;
}

.shop-cart {
    border: 1px solid #e5e5dc;
    border-radius: 2px;
    width: 100%;
}

.shop-cart .cart_table_title {
    background-color: #f3f2eb;
}

.shop-cart .cart_table_title .actions {
    width: 100%;
}

.shop-cart .cart_table_title .Product-name, .shop-cart .cart_table_title .product-price, .shop-cart .cart_table_title .product-quantity, .shop-cart .cart_table_title .product-remove, .shop-cart .cart_table_title .product-subtotal, .shop-cart .cart_table_title .product-thumbnail {
    padding: 10px 0;
}

.shop-cart .cart_table_item .Product-name, .shop-cart .cart_table_item .product-price, .shop-cart .cart_table_item .product-quantity, .shop-cart .cart_table_item .product-remove, .shop-cart .cart_table_item .product-subtotal, .shop-cart .cart_table_item .product-thumbnail {
    padding: 10px;
}

.shop-cart .cart_table_item .quantity {
    margin: 0;
}

.shop-cart .product-remove {
    width: 6%;
    text-align: center;
}

.shop-cart .product-thumbnail {
    width: 7%;
}

.shop-cart .product-name {
    width: 40%;
}

.shop-cart .product-price {
    width: 8%;
}

.shop-cart .product-quantity {
    width: 25%;
}

.shop-cart .product-subtotal {
    width: 14%;
}

.shop-cart .cart_table_action {
    background-color: #eff5f3;
}

.shop-cart .cart_table_action .actions {
    padding: 8px 0;
}

.shop-cart .cart_table_action .actions .btn {
    margin-left: 10px;
}

.shop-cart .cart_table_action .input-text {
    width: 120px;
    display: inline-block;
    height: 36px;
    background-color: #fff;
}

.quantity {
    display: inline-block;
    margin: 0 10px;
    float: left;
}

.quantity .quantity__input {
    background-color: #f3f2eb;
    width: 38px;
    -webkit-box-shadow: 0 0 0 #e5e5dc;
    box-shadow: 0 0 0 #e5e5dc;
}

.quantity .quantity__button, .quantity .quantity__input {
    font-size: 14px;
    border: 1px solid #e5e5dc;
    border-radius: 2px;
    height: 36px;
    font-weight: 700;
    text-align: center;
    margin: 0 -2px;
}

.btn-success {
    background-color: var(--green);
}

.content-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.content-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: -3px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #ffffff;
}

.checkmark.grey {
    position: absolute;
    top: -3px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
}

.content-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}

.content-checkbox input:checked ~ .checkmark {
    background-color: #177246;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.content-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.content-checkbox .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.woocommerce {
    border-radius: 20px;
}

.woocommerce .woocommerce-info {
    border: 1px solid #e5e5dc;
    background-color: #f3f2eb;
    padding: 10px 20px;
    border-radius: 2px;
}

.woocommerce .input-text {
    display: block;
    border: 1px solid #e5e5dc;
    border-radius: 2px;
    width: 100%;
    padding: 10px;
}

.woocommerce .form-row {
    margin: 20px 0 0;
}

.list-footer {
    margin: 0;
    padding: 0;
    text-align: right;
}

.list-footer li {
    list-style: none;
    display: inline-block;
}

.list-footer li a {
    font-size: 14px;
}

.btn-outline-success{
    color: var(--green);
    border-color: var(--green);
}

.btn-outline-success:hover{
    background-color: var(--green);
}

.shop_table {
    border: 1px solid #e5e5dc;
    width: 100%;
}

.shop_table > tbody > tr > td, 
.shop_table > tbody > tr > th, 
.shop_table > tfoot > tr > td, 
.shop_table > tfoot > tr > th, 
.shop_table > thead > tr > th{
    padding: 10px;
    border-top: 1px solid #e5e5dc;
}

.push-down-30 {
    margin-bottom: 30px;
}

.field-validation-error{
    color: #dc3545!important;
}

.swal2-popup .swal2-styled.swal2-confirm{
    background-color: var(--green)!important;
}

.menu-mobile{
    height: 100%;
    display: flex;
    align-items: center;
    width: 100vw;
}

.open-menu {
    height: 27px;
    width: 27px;
    cursor: pointer;
    background-image: url(../img/menu.svg);
    display: block;
    background-size: 31px;
    background-repeat: no-repeat;
}

.menu-responsive {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: scroll;
    right: 100%;
    background: #fff;
    z-index: 1049;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    top: 0;
}

.menu-responsive.h-block {
    right: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    overflow-x: hidden;
}

.menu-responsive .close-menu {
    height: 19px;
    width: 28px;
    cursor: pointer;
    background-image: url(../img/close.svg);
    display: block;
    float: right;
    background-repeat: no-repeat;
}

.r-0{
    right: 0;
}

.shop-table thead tr th,
.shop-table tbody tr td{
    font-size: 13px;
}

.shop-cart .cart_table_title {
    background-color: #177246;
    color: #fff;
}

.selected-category{
    color: #fff;
    background-color: var(--green);
}

.selected-category:hover{
    color: #fff;
}

.pagination > li {
    display: inline;
}

.pagination{
    justify-content: flex-end;
}

.pagination > li:first-child > a, .pagination > li:last-child > a {
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
}

.pagination > li:first-child > a, .pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
}

.pagination .active {
    background-color: var(--green);
    color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pagination > li > a {
    padding: 7px 14px;
    -webkit-box-shadow: 0 1px 2px #e5e5dc;
    box-shadow: 0 1px 2px #e5e5dc;
    border-radius: 2px;
}

.subtitle{
    font-size: 14px;
}

/* Shopping Cart */

.cf:before, .cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}
.wrap {
    width: 75%;
    max-width: 960px;
    margin: 0 auto;
    padding: 5% 0;
    margin-bottom: 5em;
}
.projTitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-align: center;
    font-size: 2em;
    padding: 1em 0;
    border-bottom: 1px solid #dadada;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.projTitle span {
    font-family: 'Droid Serif', serif;
    font-weight: normal;
    font-style: italic;
    text-transform: lowercase;
    color: #777;
}
.heading {
    padding: 1em 0;
    border-bottom: 1px solid #d0d0d0;
}
.heading h1 {
    font-family: 'Droid Serif', serif;
    font-size: 2em;
    float: left;
}
.heading a.continue:link, .heading a.continue:visited {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.015em;
    font-size: 0.75em;
    padding: 1em;
    color: #fff;
    background: #82ca9c;
    font-weight: bold;
    border-radius: 50px;
    float: right;
    text-align: right;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
}
.heading a.continue:after {
    content: "\276f";
    padding: 0.5em;
    position: relative;
    right: 0;
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    -ms-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    transition: all 0.15s linear;
}
.heading a.continue:hover, .heading a.continue:focus, .heading a.continue:active {
    background: #f69679;
}
.heading a.continue:hover:after, .heading a.continue:focus:after, .heading a.continue:active:after {
    right: -10px;
}
.tableHead {
    display: table;
    width: 100%;
    font-size: 0.75em;
}
.tableHead li {
    display: table-cell;
    padding: 1em 0;
    text-align: center;
}
.tableHead li.prodHeader {
    text-align: left;
}
.cart {
    padding: 1em 0;
}
.cart .items {
    display: block;
    width: 100%;
    vertical-align: middle;
    padding: 1.5em;
    border-bottom: 1px solid #fafafa;
}
.cart .items {
    background: #fafafa;
    border: 2px solid #fff;
}
.cart .items .infoWrap {
    display: table;
    width: 100%;
}
.cart .items .cartSection {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
}
.cart .items .cartSection .itemNumber {
    font-size: 0.75em;
    color: #777;
    margin-bottom: 0.5em;
}
.cart .items .cartSection h3 {
    font-size: 1em;
    letter-spacing: 0.025em;
    color: #212529;
}
.cart .items .cartSection p {
    display: inline-block;
    font-size: 0.85em;
}
.cart .items .cartSection p .quantity {
    font-weight: bold;
    color: #333;
}
.cart .items .cartSection p.stockStatus {
    color: #82ca9c;
    font-weight: bold;
    padding: 0.5em 0 0 1em;
    text-transform: uppercase;
}
.cart .items .cartSection p.stockStatus.out {
    color: #f69679;
}
.cart .items .cartSection .itemImg {
    width: 4em;
    float: left;
}
.cart .items .cartSection.qtyWrap, .cart .items .cartSection.prodTotal {
    text-align: center;
}
.cart .items .cartSection.qtyWrap p, .cart .items .cartSection.prodTotal p {
    font-weight: bold;
    font-size: 1em;
}
.cart .items .cartSection input.qty {
    width: 2em;
    text-align: center;
    font-size: 1em;
    padding: 0.25em;
}
.cart .items .cartSection .itemImg {
    width: 8em;
    display: inline;
    padding-right: 1em;
}
.special {
    display: block;
}
.special .specialContent {
    padding: 1em 1em 0;
    display: block;
    margin-top: 0.5em;
    border-top: 1px solid #dadada;
}
.special .specialContent:before {
    content: "\21b3";
    font-size: 1.5em;
    margin-right: 1em;
    color: #6f6f6f;
    font-family: helvetica, arial, sans-serif;
}
a.remove {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    background: var(--red);
    padding: 0.5em;
    font-size: 0.75em;
    display: inline-block;
    border-radius: 100%;
    line-height: 0.85;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
}
a.remove:hover {
    background: #f30;
}
.promoCode {
    border: 2px solid #efefef;
    float: left;
    width: 35%;
    padding: 2%;
}
.promoCode label {
    display: block;
    width: 100%;
    font-style: italic;
    font-size: 1.15em;
    margin-bottom: 0.5em;
    letter-spacing: -0.025em;
}
.promoCode input {
    width: 85%;
    font-size: 1em;
    padding: 0.5em;
    float: left;
    border: 1px solid #dadada;
}
.promoCode input:active, .promoCode input:focus {
    outline: 0;
}
.promoCode a.btn {
    float: left;
    width: 15%;
    padding: 0.75em 0;
    border-radius: 0 1em 1em 0;
    text-align: center;
    border: 1px solid #82ca9c;
}
.promoCode a.btn:hover {
    border: 1px solid #f69679;
    background: #f69679;
}

.subtotal .totalRow {
    padding: 0.5em;
    text-align: right;
}
.subtotal .totalRow.final {
    font-size: 1.25em;
    font-weight: bold;
}
.subtotal .totalRow span {
    display: inline-block;
    padding: 0 0 0 1em;
    text-align: right;
}
.subtotal .totalRow .label {
    font-size: 0.85em;
    text-transform: uppercase;
    color: #777;
}
.subtotal .totalRow .value {
    letter-spacing: -0.025em;
    width: 35%;
}

ul.cartWrap{
    padding-left: 0;
}

@media only screen and (max-width: 39.375em) {
    .wrap {
        width: 98%;
        padding: 2% 0;
    }
    .projTitle {
        font-size: 1.5em;
        padding: 10% 5%;
    }
    .heading {
        padding: 1em;
        font-size: 90%;
    }

    .cart .items .cartSection.qtyWrap {
        width: 10%;
        text-align: center;
        padding: 0.5em 0;
        float: right;
    }
    .cart .items .cartSection.qtyWrap:before {
        content: "QTY";
        display: block;
        font-family: 'Montserrat', sans-serif;
        padding: 0.25em;
        font-size: 0.75em;
    }
    .cart .items .cartSection .itemImg {
        width: 25%;
    }
    .promoCode, .subtotal {
        width: 100%;
    }
    a.btn.continue {
        width: 100%;
        text-align: center;
    }
}

.cartSection{
    width: 70%;
}

.sm-cart {
    width: 30%;
    display: table-cell;
    vertical-align: middle;
    text-align: right;
}

.prodTotal.cartSection p {
    margin-right: 10px;
}

.text-danger, .required{
    color: var(--red);
}

.your-order{
    background: #f2f2f2 none repeat scroll 0 0;
    padding: 20px;
}

.your-order label{
    font-weight: bold;
}

.summary-subtotal{
    background-color: #fafafa;
}

.your-order .subtotal .totalRow .label{
    font-size: 0.75em;
}

.sm-cart.w-20{
    width: 20%;
} 

.dedicated-img.bg{
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 75%;
    background-position: center center;
}

.bg-cover{
    background-size: cover !important;
}

.mb-100{
    margin-bottom: 100px;
}

.btn-fixed{
    position: fixed;
    bottom: 40px;
    right: 40px;
    color: #fff;
    background-color: var(--green);
    padding: 10px 20px;
    border-radius: 20px;
}

.btn-fixed:hover{
    color: #fff;
    background-color: #115032;
}

.autocomplete-suggestions {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #FFF;
    cursor: default;
    overflow: auto;
    box-shadow: 0 15px 15px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 15px 15px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 15px 15px rgba(0, 0, 0, .1);
    border-radius: 0 0 21px 21px !important;
    padding-bottom: 20px;
}

.autocomplete-suggestion {
    padding: 2px 10px;
    white-space: nowrap;
    overflow: hidden;
}

.autocomplete-no-suggestion {
    padding: 2px 38px;
}

.autocomplete-selected {
    background: #F0F0F0;
}

.autocomplete-suggestions strong {
    font-weight: bold;
    color: #000;
}

.autocomplete-group {
    padding: 2px 5px;
    font-weight: bold;
    font-size: 16px;
    color: #000;
    display: block;
    border-bottom: 1px solid #000;
}