@charset "UTF-8";
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: "Baloo Bhaijaan 2";
    font-weight: 400;
    background-color: #ebeff3;
    -webkit-font-smoothing: antialiased;
    height: 100%;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}
.main {
    position: relative;
    margin: 40px 25px;
}


* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

button {
    font-family: "Baloo Bhaijaan 2";
    padding: 0;
    border: none;
    background-color: transparent;
    transition: .25s ease;
    transition-property: color, background-color, border-color, box-shadow;
    cursor: pointer;
}

button:focus {
    outline: none
}



.button-block {
    display: block;
    width: 100%;
}






.button-primary {
    background: linear-gradient(45deg, #002622, #00594F);
    color: #fff;
    padding: 0 20px;
    margin: 0 0 0 10px;
    font-size: 18px;
    font-weight: 400;
    border-radius: 15px;
    text-align: center;
    display: inline-block;
}

.button-primary:hover {
    transform: scale(1.05);
}
.dropdown .button-primary:hover {
    transform: scale(1);
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.fade-in {
    opacity: 0;
    transition: all .6s ease-in-out;
}
.fade-in.show {
    opacity: 1;
}

.fade-in-down{
    bottom: -20px;
}
.fade-in-down.show{
    
    bottom: 0;
}

.header {
    display: block;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    height: 50px;
    background-color: transparent;
    z-index: 101
}

.hidden {
    display: none !important;
}

.header-top {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    margin: 20px 30px;
}

.header-top a {
    font-size: 18px;
    font-weight: 500;
    margin: 0 30px;
    color: #003F39;
}

.header-top a.active {
    color: #00594F;
}

.header-top a.button-primary {
    color: #fff;
}

@media(min-width: 768px) {
    .header-top {
        display: flex;
    }
}









.header-logo {
    display: inline-block;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    right: 25px;
}

.header-logo a {
    font-size: 0;
}

.header-logo img {
    width: auto;
    height: 50px;
    display: block;
    pointer-events: none;
}

.header-button {
    position: absolute;
    width: 22px;
    height: 22px;
    display: block;
    left: 25px;
    top: 25px;
    z-index: 99;
}

.header-button.active {
    position: fixed;
}

.header-button span {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    right: 0;
    width: 22px;
    height: 2px;
    background-color: #003F39;
    border-radius: 2px;
    transition: .25s ease;
}

.header-button span:first-child {
    top: 0
}

.header-button span:nth-child(2) {
    top: 7px;
}

.header-button span:last-child {
    top: 14px;
}

.header-button.active span {
    background-color: #fff
}

.header-button.active span:nth-child(2) {
    display: none;
}

.header-button.active span:first-child {
    top: 7px;
    transform: rotate(-45deg);
}

.header-button.active span:last-child {
    top: 7px;
    transform: rotate(45deg);
}

.header-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #003F39;
    z-index: 99;
    width: 220px;
    padding: 75px 25px 0;
    margin-right: auto;
    transform: translate3d(-221px, 0, 0);
    transition: transform .25s ease;
    /*border-left: 1px solid #0b1a29*/
}

.header-menu.active {
    box-shadow: -10px 0 40px 0 black;
    transform: translate3d(0, 0, 0);
}

.header-navigation {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    position: relative
}

.header-navigation-item {
    margin-bottom: 20px;
    margin-right: 20px;
    position: relative
}

.header-navigation-item:last-child {
    margin-bottom: 0
}

.header-navigation-link {
    font-size: 16px;
    color: #fff;
    line-height: 22px;
    height: 22px;
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-weight: 500;
    transition: fill .25s ease;
}

.header-navigation-link svg {
    fill: #bdbdbd;
    width: 14px;
    height: auto;
    margin-left: 1px;
    margin-top: 2px
}

.header-navigation-link.active {
    color: #007065;
    cursor: default;
    font-weight: 700;
}

.header-navigation-link:hover:not(.header-navigation-link.active),
.header-navigation-link[aria-expanded=true] {
    color: #007065;
    transform: scale(1.1);
}

@media(min-width: 768px) {
    .header-button {
        display: none
    }
    .header-menu {
        display:none;
    }
}

footer {
    background-color: #003F39;
    color: #fff;
    margin-top: auto;
}


.footer-logo {
    padding: 25px 25px 0;
}

.footer-logo img {
    width: auto;
    height: 40px;
    display: block;
    pointer-events: none;
}

.footer-middle-cards {
    display: block;
    margin: 0 25px;
}

.footer-middle-card {
    display: inline-flex;
    margin-left: 15px;
}

.footer-middle-card a {
    font-size: 0;
}

.footer-middle-card.payments {
    border: 1px solid #fff;
    border-radius: 6px;
    padding:0 10px 11px 10px;
}

.footer-middle-card.payments legend {
    padding:0 6px;
}

.footer-middle-card.payments > *:not(:first-child):not(:last-child) {
    margin-left: 8px;
}



.footer-middle-card.payments img {
    height: 23px;
    pointer-events: none;
}

.footer-image {
    height: 30px;
    pointer-events: none;
}

.footer-sections {
    width: 100%;
    display: inline-flex;
}

.footer-section {
    padding: 0 0 0 100px;
    flex-direction: column;
    padding: 0 25px 10px 0;
    width: 50vh;
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    width: 100%;
    text-align: right;
    color: white;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    margin: 20px 0 0 0;
}

.footer-section ul {
    margin: 10px 0 0 0;
}

.footer-section li:not(:first-child) {
    margin-top: 4px;
}


.footer-section-link {
    color: #fff;
    display: inline-flex;
}

.footer-section-link:hover {
    color: #007065;
    transform: scale(1.1);
}

.footer-social-media {
    padding: 15px 25px 10px 0;
}

.footer-social-media a {
    font-size: 0;
}

.footer-social-media .fab {
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    margin: 0 0 0 15px;
}

.footer-social-media .fab:hover {
    color: #007065;
    transform: scale(1.2);
}

.copyright {
    display: flex;
    padding: 0 25px;
    background-color: #222727;
}
.copyright p {
    font-size: 15px;
    text-align: right;
}



.home-top-card {
    display: block;
    position: relative;
    max-width: 100%;
    min-width: 100%;
    margin-bottom: 40px;
}

.home-cards-group {
    margin-top: 20px;
    align-self: center;
}

.home-top-buttons {
    display: inline-block;
    margin-bottom: 15px;
}

.home-top-card img {
        width: 300px;
        height: 390px;
    pointer-events: none;
}

.home-top-content {
    width:70vw;
    font-size: 17px;
    font-weight: 600;
}

@media(min-width: 768px) {
    
    .home-top-card {
        display: inline-flex;
    }
    .home-top-content {
        width: 40vw;
    }
    .home-cards-group {
        margin-top: 0;
        margin-right: 40px;
    }
}

@media(min-width: 1200px) {
    .home-top-card {
        display: inline-flex;
    }
    .home-top-content {
        width: 25vw;
    }
    .home-cards-group {
        margin-top: 0;
        margin-right: 40px;
    }
    
}




.info-cards {
    display: grid;
    grid-template-columns:repeat(1, minmax(0, 1fr));
    border-spacing: 10px;
    margin-left: -15px;
    margin-top: 100px;
}

@media(min-width:768px) { 
    .info-cards {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media(min-width:1200px) {
    .info-cards {
        grid-template-columns:repeat(4, minmax(0, 1fr));
    }
}


.info-card {
    display: block;
    /*background-color: #fff;
    border-radius: 15px;
    padding: 20px;*/
    margin: 15px 0 0 15px;
    position: relative;
    text-align: center;
}


.info-card h3 {
    color: #007065;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.info-card p {
    color: #777777;
}

.info-card img {
    max-width: 115px;
    pointer-events: none;
}


.reviews-view-card {
    display: block;
    align-self: center;
    /*align-items: center;*/
    text-align: center;
    margin: 40px 0;
}

.reviews-view-card img {
    width: 125px;
   height: 125px;
   pointer-events: none;
}


.reviews-view-card-content {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 40px;
}


.reviews-cards {
    margin: 30px 0;
}

.reviews-cards .reviews-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 30px;
}

.reviews-card {
    display: block;
    padding: 14px;
    background-color: #fff;
    border-radius: 10px;
    margin: 15px auto;
    max-width: 600px;
}

.reviews-card .reviews-name {
    display: block;
    text-align: right;
    font-weight: 600;
}


.reviews-card .reviews-stats {
    display: block;
    font-size: 14px;
    float: left;
}


.reviews-card .reviews-date {
    margin-left: 8px;
    font-size: 13px;
    color: #616161;
}

.reviews-card .reviews-comment {
    text-align: right;
    margin-top: 15px;
}


.reviews-card .fa-star {
    color: #616161;
}

.reviews-card .fa-star.checked {
    color: orange;
}

.pagination {
    display: inline-block;
}

.pagination a {
    color: black;
    padding: 4px 12px;
    text-decoration: none;
    font-weight: 500;
}
  
.pagination a.active {
    background-color: #007065;
    color: white;
}
  
.pagination a:hover:not(.disabled):not(.active) {
    background-color: #616161;
    color: white;
}

.pricing-cards {
    display: flex;
    margin: 15px 0 0 0;
    gap:10px;
    justify-content: center;
}

.pricing-card {
    display: inline-block;
    background-color: #fff;
    border-radius: 15px;
    padding: 0 15px 30px 15px;
    width: 200px;
    color: #00594F;
}

.pricing-card:hover {
    transform: scale(1.05);
}

.pricing-card.pricing-card-dark {
    background: linear-gradient(45deg, #002622, #00594F);
    color: #fff;
}

.pricing-card.pricing-card-dark .button-primary {
    background: #fff;
    color: #00594F;
}

.pricing-card-header {
    margin: 20px 0 15px 0;
}

.pricing-card-content {
    list-style-type: none;
    padding-left: 0;
    font-size: 13px;
    font-weight: 500;
}

.pricing-card-content li i {
    margin-left: 5px;
}

.pricing-card-footer {
    padding: 20px 0 0 0;
    bottom: 0;
    left: 0;
}

.stats-cards {
    display:grid;
    grid-template-columns:repeat(1, minmax(0, 1fr));
    margin-top: 20px;
    gap:1rem;
}



@media (min-width: 768px) {
    .stats-cards{
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }
}

@media (min-width: 1200px){
    .stats-cards{
        grid-template-columns:repeat(4, minmax(0, 1fr))
    }
}

.stats-card {
    display: flex;
    position: relative;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
}

.stats-card img {
    width: 50px;
   height: 50px;
   pointer-events: none;
}

.stats-card-body {
    margin-right: 10px;
    margin-top: 4px;
}


.stats-card-body h2, .stats-card-body p {
    font-size:inherit;
    font-weight:inherit;
    margin:0;
}

.stats-card-body h2 {
    font-weight:600;
    margin-bottom: -4px;
}

.stats-card-body p {
    font-size:0.875rem;
    line-height:1.25rem;
    --tw-text-opacity:1;color:
    rgb(107 114 128 / var(--tw-text-opacity));
}

.contact-cards {
    display: block;
    background-color: #fff;
    border-radius: 12px;
    margin: 10px 0;
    max-width: 100%;
}

.contact-top-title {
    font-size: 15px;
    font-weight: 500;
    margin: 10px 0 30px 0;
    max-width: 280px;
}

.contact-cards-item {
    display: block;
    padding: 20px;
}
.contact-cards-item.first {
    width: 100%;

}

.contact-cards-item.second {
    border-top: 1px solid #dadada;
}

.contact-cards-item.second h4 {
    margin-bottom: 20px;
}

.contact-form {
    width: 100%;
}


@media (min-width: 768px) {
    .contact-cards {
        display: inline-flex;
        max-width: 580px;
    }
    .contact-cards-item.first {
        width: 41%;
    }
    .contact-form.fit {
        width: 350px;
    }
    .contact-cards-item.second {
    border-top: 0;
    border-right: 1px solid #dadada;
    }
}


.contact-form-item {
    margin-bottom: 12px;
}

.contact-form textarea {
    display: block;
    width: 100%;
    padding: 4px 10px 2px 2px;
    font-family: "Baloo Bhaijaan 2";
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #6b6b6b;
    max-width: 100%;
    resize: none;
}




.contact-form label {
    font-weight: 500;
}


.contact-form button {
    width: 100%;
    font-size: 16px;
    margin-bottom: 15px;
    padding: 3px 20px 1px 20px;
}


.contact-card:not(.last) {
    display: block;
    /*background-color: #fff;
    border-radius: 15px;*/
    padding-bottom: 30px;
    position: relative;
}



.contact-card .center {
    text-align: center;
}

.contact-card img {
    width: 65px;
   height: 65px;
   pointer-events: none;
}

.contact-card.contact-location img {
    width: 70px;
   height: 70px;
   pointer-events: none;
}

.contact-title {
    font-size: 17px;
    font-weight: 600;
}

.contact-content {
    display: block;
}

.contact-content-name {
    font-size: 16px;
}
.contact-content-value {
    display: block;
    text-align: right;
    direction: ltr;
    font-size: 16px;
    font-weight: 500;
}


.contact-content a {
    color: #007065;
    font-size: 16px;
    font-weight: 500;
}



.contact-social-media {
    padding: 0;
}

.contact-social-media a {
    font-size: 0;
}

.contact-social-media .fab {
    font-size: 25px;
    text-align: center;
    text-decoration: none;
    color: #007065;
    margin: 0 0 0 15px;
}

.contact-social-media .fab:hover {
    color: #00594F;
    transform: scale(1.2);
}

.about-top-card {
    margin-top: 25px;
}

.about-top-title {
    font-size: 17px;
    font-weight: 600;
}

.about-top-content {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
}

@media(min-width: 768px) {
    .about-top-content {
        width: 60%;
    }
}

@media(min-width: 1200px) {
    .about-top-content {
        width: 40%;
    }
}

.about-cards {
    display:grid;
    grid-template-columns:repeat(1, minmax(0, 1fr));
    margin: 25px 0 20px 0;
    gap:1rem;
}

.about-card {
    display: block;
    text-align: center;
}

.about-card .a-text-hidden {
    font-size: 0;
}

.about-card.colored {
    padding: 20px;
    border-radius: 15px;
    background-color: #fff;
}

.about-card .about-image {
    max-width: 200px;
    max-height: 200px;
    pointer-events: none;
}

.about-top-card .vision {
    margin-top: 30px;
}

.about-top-card .vision-image {
    margin-top: 20px;
    max-width: 200px;
    max-height: 200px;
    pointer-events: none;
}

.about-card .about-image-small {
    max-width: 70px;
    max-height: 70px;
    pointer-events: none;
}

.about-card h4 {
    font-size: 15px;
    font-weight:600;
}

.about-location-name {
    font-size: 16px;
    font-weight: 600;
}
.about-location-value {
    font-size: 16px;
    font-weight: 500;
}

.about-card a {
    display: block;
    color: #007065;
    font-size: 16px;
    font-weight: 500;
}

.privacyterms-top-card {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
}

@media(min-width: 768px) {
    .privacyterms-top-card {
        width: 60%;
    }
}

@media(min-width: 1200px) {
    .privacyterms-top-card {
        width: 40%;
    }
}

.privacyterms-card {
    display: flex;
    justify-content: space-between;

}

.privacyterms-card h5 {
    align-self: center;
    font-size: 13px;
    font-weight: 500;
    color: #616161;
}

.m-d.expand-list {
    margin: 0;
    padding: 0;
}


.m-d.expand-list > li {
    list-style-type: none;
    border-radius: 6px;
    padding: 8px 15px;
    margin-top: 15px;
    position: relative;
    background-color: #fff;
}

.m-d label[class^="tab"]:hover {
    cursor: pointer;
}
.m-d input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.m-d input[class^="tab" ]{
    width: 100%;
    height: 40px;
    position: absolute;
    left: 0;
    top: 0; 
}
.m-d input[class^="tab"]:hover {
    cursor: pointer;
}
.m-d label[class^="tab"] {
    font-weight: bold;
}
.m-d .content {
    height: auto;
    max-height: 0;
    overflow: hidden;
    transform: translateY(20px);
    font-size: 15px;
    white-space: pre-wrap;
}

@media(min-width: 768px) {
    .m-d .content {
        width: 60%;
    }
}

@media(min-width: 1200px) {
    .m-d .content {
        width: 40%;
    }
}


.m-d li input[class^="tab"]:checked ~ .content{
    max-height: 100vh;
}
.m-d input[class^="tab"]:checked ~ .content{
    margin-bottom: 20px;
}

.m-d .open-close-icon {
    display: inline-block;
    position:absolute;
    top: 12px;
    left: 25px;
    transform: translatey(2px);
}
.m-d .open-close-icon i {
    position: absolute;
    left: 0;
}
.m-d .open-close-icon .fa-plus {
    opacity: 1;
}
.m-d .open-close-icon .fa-minus {
    opacity: 0;
}
.m-d input[class^="tab"]:checked ~ .open-close-icon .fa-plus {
    opacity: 0;
}
.m-d input[class^="tab"]:checked ~ .open-close-icon .fa-minus {
    opacity: 1;
}

.testimonial {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.testimonial .slide {
  display: block;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 30px;
  height: 100%;
  width: 100%;
  margin-bottom: 40px;
}

.swiper-pagination-bullet {
  background-color: #333;
}
.swiper-pagination-bullet-active {
  background-color: #00594F;
}


.order-loading {
    display: block;
    padding: 100px;
    background-color: #fff;
    border-radius: 16px;
    width: 320px;
    height: 320px;
    margin: 45px auto 40px auto;
}

.order-cards {
    display: block;
    width: 320px;
    margin: 30px auto 0 auto;
}

.order-card  {
    display: block;
    background-color: #fff;
    border-radius: 16px;
    text-align: center;
    padding: 20px 10px;
    border: 0;
}

.order-cards .content  {
    display: block;
    background-color: #fff;
    border-radius: 16px 16px 0 0;
    text-align: center;
    padding: 20px 10px 5px 10px;
}


.order-cards .content div[role="tabpanel"]  {
    padding: 0;
    border: 0;
    margin: 0;
    outline: none;
}



.tab-item {
    display: block;
    width: 100%;
}

.tab-item .input {
    margin: 16px 8px;
}

.tab-item .input a {
    font-size: 14px;
    font-weight: 500;
    color: #00594F;
}

.order-cards .content label.error, .contact-form label.error , .review-item label.error {
    display: block;
    text-align: right;
    color: #a94442;
    font-size: 12px;
    font-weight: 500;
    width: 100%;
}

.tab-item .input.inline {
    display: flex;
}


.tab-item .input.inline .inline-item {
    width: 100%;
}

.tab-item .input.inline .inline-item:not(:last-child:disabled):not(:last-child) {
    margin-left: 10px;
}

.tab-item .title {
    font-size: 17px;
    font-weight: 600;
    margin-right: 8px;
}


.tab-item input:not([type="file"]):not([type="checkbox"]):not(.location_type), .contact-form input, .review-card input {
    font-family: "Baloo Bhaijaan 2";
    font-size: 14px;
    width: 100%;
    padding: 2px 10px 2px 2px;
    border-radius: 8px;
    border: 1px solid #6b6b6b;
}

.tab-item input.center {
    padding: 2px;
    text-align: center;
}


.tab-item input:disabled, .tab-item select:disabled {
    display: none;
}

.accept-terms label {
    display: inline-block;
    text-align: right;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    padding-right: 24px;
}

.accept-terms label a {
    display: inline-block;
    font-weight: 500;
    color: #00594F;
}


.tab-item input[type="checkbox"] {
    display: flex;
    position: absolute;
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    margin: 0;
    color: currentColor;
    width: 16px;
    height: 16px;
    margin-top: 4px;
    border: 1px solid currentColor;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
    place-content: center;
}

.tab-item input[type="checkbox"]::before {
    content: "";
    width: 10px;
    height: 10px;
    margin-top: 2px;
    border-radius: 0.1em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    background-color: #003F39;
}

.tab-item input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.tab-item select, .contact-form-item select {
    font-family: "Baloo Bhaijaan 2";
    font-size: 14px;
    width: 100%;
    padding: 2px 10px 2px 2px;
    border-radius: 8px;
    border: 1px solid #6b6b6b;
    background-color: #fff;
    -webkit-appearance: none;
    appearance: none;
}

.order-payment-icon img {
    height: 23px;
    border-radius: 4px;
    border: 1px solid #cacaca;
    pointer-events: none;
}

.order-payment-price .price {
    font-weight: 600;
}

.order-payment-price.green {
    color: #107e12;
}

.order-payment-price.orange {
    color: #e4940b;
}

.order-payment-price.red {
    color: #a32d2b;
}


.tab-item select.center {
    padding: 2px;
    text-align: center;
    text-align-last:center;
}

.tab-item select, .tab-item select option, .contact-form-item select, .contact-form-item select option {
    color: #000;
}

.tab-item select:required:invalid, .contact-form-item select:required:invalid {
    color: gray;
}

.tab-item .button-default {
    font-size: 14px;
    width: 100%;
    padding: 2px;
    border-radius: 8px;
    border: 1px solid #00594F;
    margin: 0;
}

.tab-title {
    display: block;
    color: #00594F;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.location-card {
    display: grid;
    text-align: center;
    place-items: center;
    place-content: center;
    gap: 20px;
    grid-auto-flow: column;
    grid-template-rows: auto;
    margin-bottom: 14px;
}

.location-title {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 20px;
}


.location-item {
    display: inline-block;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #000;
    cursor: pointer;
}

.location-item .location-item-title {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
}

.location-item img {
    width: 85px;
    height: 85px;
    pointer-events: none;
}


.page-step {
    display: block;
    height: 50%;
}

.page-buttons {
    display: block;
    text-align: center;
    margin-top: 30px;
}

.alert {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 8px;
}

.alert h4 {
    color: inherit;
    font-size: 15px;
}
.alert .alert-link {
    font-weight: bold;
}
.alert > p,
.alert > ul {
    margin-bottom: 0;
}
.alert ul {
    margin-top: 6px;
    padding-right: 8px;
}
.alert ul li {
    font-size: 15px;
    list-style-type: circle;
    list-style-position: inside;
}
.alert > p + p {
    margin-top: 5px;
}

.alert-dismissable,
.alert-dismissible {
    padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit;
}
.alert-success {
    background-color: #d8ebd0;
    border-color: #c2d4b3;
    color: #3c763d;
}
.alert-success hr {
    border-top-color: #c9e2b3;
}
.alert-success .alert-link {
    color: #2b542c;
}
.alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f;
}
.alert-info hr {
    border-top-color: #a6e1ec;
}
.alert-info .alert-link {
    color: #245269;
}
.alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b;
}
.alert-warning hr {
    border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
    color: #66512c;
}
.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
}
.alert-danger hr {
    border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
    color: #843534;
}



.order-contract-type {
    display: block;
    text-align: center;
    width: 100%;
}

.order-contract-type .title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.order-contract-type .item-title {
    font-size: 15px;
    font-weight: 500;
}

.order-contract-type .item-price {
    font-size: 16px;
    font-weight: 600;
}

.order-pricing-title {
    display: block;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-top: 30px;
}

.order-pricing-title a {
    cursor: pointer;
}

.progress-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 20px;
    width: 100%;
}

.progress-container::before {
    content: '';
    background-color: #c0c0c0;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    z-index: -1;
}

.progress {
    background-color: #00594F;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 4px;
    width: 0%;
    z-index: -1;
    transition: 0.4s ease;
}

.circle {
    color: #fff;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    display: flex;
    justify-content: center;
    background-color: #c0c0c0;
    transition: 0.4s ease;
 }

.circle.active {
    background-color: 00594F;
}

.circle.current {
    transform: scale(1.30);
}

.order-details {
    display: block;
    background-color: #fff;
    border-radius: 16px;
    padding: 20px;
    margin: 20px auto 0 auto;
    max-width: 518px;
}

.order-details .order-item {
    padding: 20px 0 0 0;
}







.order-details .order-pay {
    padding: 10px 0 0 0;
}

.pay-title {
    font-size: 15px;
    font-weight: 600;
    text-align: right;
    margin-bottom: 10px;
}

.order-final-price {
    font-size: 14px;
    font-weight: 600;
}

.order-price {
    font-size: 18px;
    font-weight: 600;
    color: #00594F;
}

.order-pay button {
    font-size: 14px;
}

.bank-card {
    display: block;
    position:relative;
    text-align: right;
    border: 1px solid #6b6b6b;
    border-radius: 12px;
    max-width: 300px;
    height: 180px;
    padding: 13px 20px;
    margin-bottom: 10px;
}

.bank-card .bank-title {
    font-size: 15px;
    font-weight: 700;
    padding-bottom: 8px;
}

.bank-card .bank-item {
    font-size: 13px;
    font-weight: 500;
    padding-bottom: 5px;
}

.bank-card img {
    position: absolute;
    bottom: 40px;
    left: 17px;
    width: 70px;
    height: auto;
    pointer-events: none;
}


.bank-card.alrajhi {
    color: #324f9e;
    border: 1px solid #324f9e;
}

.bank-card.alahli {
    color: #00594F;
    border: 1px solid #00594F;
}

.review-card {
    margin-top: 14px;
}

.review-card .review-item {
    margin-bottom: 20px;
}

.review-item .input {
    padding-top: 12px;
}

.review-card textarea {
    display: block;
    width: 100%;
    padding: 4px 10px 2px 2px;
    font-family: "Baloo Bhaijaan 2";
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #6b6b6b;
    max-width: 100%;
    resize: none;
}

.review-title {
    font-size: 17px;
    font-weight: 500;
}

.review-stars {
    text-align: right;
    font-size: 15px;
    font-weight: 500;
}

.rate {
    direction: ltr;
}
.rate:not(:checked) > input {
    position:absolute;
    top:-9999px;
}
.rate:not(:checked) > label:not(.error) {
    color:#bbbbbb;
    cursor:pointer;
}

.rate > input:checked ~ label:not(.error) {
    color: orange;    
}
.rate:not(:checked) > label:not(.error):hover,
.rate:not(:checked) > label:not(.error):hover ~ label:not(.error) {
    color: #f1bb46;  
}
.rate > input:checked + label:not(.error):hover,
.rate > input:checked + label:not(.error):hover ~ label:not(.error),
.rate > input:checked ~ label:not(.error):hover,
.rate > input:checked ~ label:not(.error):hover ~ label:not(.error),
.rate > label:not(.error):hover ~ input:not(.error):checked ~ label:not(.error) {
    color: #d1a01a;
}
























.order-details .order-title {
    font-size: 15px;
    font-weight: 600;
}

.order-details .order-top {
    font-size: 14px;
    font-weight: 500;
}

.order-details .order-value {
    display: inline-block;
    font-weight: 600;
}

.order-details table td {
    font-size: 15px;
    font-weight: 500;
}

.order-details table a {
    color: #007065;
}

.order-details .order-green {
    color: #107e12;
}

.order-details .order-orange {
    color: #e4940b;
}

.order-details .order-red {
    color: #a32d2b;
}

.order-footer {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 30px 0 80px 0;
}

.order-footer a {
    color: #007065;
    cursor: pointer;
}

.button-default {
    background-color: #00594F;
    color: #fff;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    padding: 4px 18px;
    margin: 0 4px;
    font-size: 16px;
}

.button-default:active {
    transform: scale(0.98);
}

.button-default:focus {
    outline: 0;
}

.button-dark {
    background-color: #929292;
    color: #fff;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    padding: 4px 18px;
    margin: 0 4px;
    font-size: 16px;
}

.button-danger {
    background-color: #a32d2b;
    color: #fff;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    padding: 4px 18px;
    margin: 0 4px;
    font-size: 16px;
}

.button-dark:active {
    transform: scale(0.98);
}

.button-dark:focus {
    outline: 0;
}

.grid-wrapper {
    display: block;
    place-items: center;
    place-content: center;
    justify-content: center;
}

.grid-wrapper.plane {
    display: grid;
    justify-content: space-between;
}

.grid-col-auto {
    grid-auto-flow: column;
    grid-template-rows: auto;
}

label.radio-card {
    display: block;
	cursor: defaul;
}

label.radio-card .card-content-wrapper {
    display: grid;
    background: #f1f1f1;
    border-radius: 10px;
    padding: 15px;
    transition: 200ms linear;
}

label.radio-card .card-content-wrapper.white {
    background: #ffffff;
}

label.radio-card input.error ~ .card-content-wrapper  {
    box-shadow: 0 2px 4px 0 rgba(128, 42, 42, 0.5), 0 0 0 1px #a94442;
}


label.radio-card .check-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    border-radius: 50%;
    transition: 200ms linear;
    position: relative;
    margin-bottom: 15px;
}

label.radio-card input[type='radio']:not(:disabled) ~ .contract-info .check-icon {
    box-shadow: 0 0 0 4px rgba(77, 129, 127, 0.2);
}


label.radio-card .check-icon:before {
    display: flex;
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    font-weight:600;
    align-items: center;
    justify-content: center;
    content: "\f00c";
    color: #fff;
    position: absolute;
    inset: 0;
    transform: scale(1.6);
    transition: 200ms linear;
    opacity: 0;
}

label.radio-card input[type='radio'] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

label.radio-card input[type='radio']:checked + .card-content-wrapper {
    box-shadow: 0 2px 4px 0 rgba(105, 223, 193, 0.5), 0 0 0 2px #00594F;
}

label.radio-card input[type='radio']:checked + .card-content-wrapper .check-icon {
    background: #00594F;
    border-color: #00594F;
    box-shadow: 0 0 0 4px rgba(77, 129, 127, 0.2);
    transform: scale(1.2);
}

label.radio-card input[type='radio']:checked + .card-content-wrapper .check-icon:before {
    transform: scale(1);
    opacity: 1;
}

label.radio-card input[type='radio']:focus + .card-content-wrapper .check-icon {
    box-shadow: 0 0 0 4px rgba(77, 129, 127, 0.2);
    border-color: #00594F;
}

label.radio-card .radio-card-content img {
    display: fixed;
    width: 100px;
    pointer-events: none;
}

.swal-name {
    color: #00594F;
    font-weight: 500;
}

.loader {
    border: 6px solid #f3f3f3;
    border-radius: 50%;
    border-bottom-color: #00594F;
    width: 120px;
    height: 120px;
    -webkit-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
}

@-webkit-keyframes rotation {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
  
@keyframes rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.input-file {
    position: relative;
    border-radius: 8px;
    border: 1px solid #6b6b6b;
    font-size:14px;
    margin: 16px 8px;
}


.file-mimes {
    margin: 16px 8px 24px 8px;
    font-size: 13px;
    text-align: right;
}

.input-file input[type="file"] {
    font-family: "Baloo Bhaijaan 2";
    font-size: 14px;
    width: 100%;
    padding: 2px;
    border-radius: 8px;
    z-index: 1;
    opacity: 0;
}

.input-file #choose-file-text {
    color: gray;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    border-radius: 0 8px 8px 0;
    right: 0;
    width: 100%;
    pointer-events: none;
    padding: 0 8px;
    text-align: right;
    pointer-events:none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.input-file #choose-file-button {
    display: flex;
    align-items: center;
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    color: #fff;
    background-color: #00594F;
    padding: 0 8px;
    border: 1px solid #6b6b6b;
    border-radius: 8px 0 0 8px;
    font-weight: 600;
    pointer-events:none;
}


.order-cards .steps div[role="tablist"] {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 20px;
    width: 100%;
}

.order-cards .steps div[role="tablist"]::before {
    content: '';
    background-color: #c0c0c0;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    z-index: -1;
}

.order-cards .progress {
    background-color: #00594F;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 4px;
    width: 0%;
    z-index: -1;
    transition: 0.4s ease;
}

.order-card .steps, .order-cards .steps li, .order-cards .steps a {
    pointer-events: none;
    outline: none;
}


.order-cards .steps li {
    color: #fff;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    display: flex;
    background-color: #c0c0c0;
    justify-content: center;
    transition: 0.4s ease;
}

.order-cards .steps li a {
    color: #fff;
}

.order-cards .steps li.active {
    background-color: #00594F;
}

.order-cards .steps li.current {
    background-color: #00594F;
    transform: scale(1.30);
}


.order-cards .actions ul, .order-cards .actions li, .order-cards .actions a {
    display: inline-block;
}


.order-cards .actions {

    display: block;
    background-color: #fff;
    text-align: center;
    border-radius: 0 0 16px 16px;
    padding-bottom: 20px;
    border: 0;
}


.order-cards .actions a[href="#next"], .order-cards .actions a[href="#finish"] {
    background-color: #00594F;
    color: #fff;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    padding: 4px 18px;
    margin: 0 4px;
    font-size: 16px;
}

.order-cards .actions li[style="display: list-item;"] {
    display: inline-block !important;
}

.order-cards .actions a[href="#previous"] {
    background-color: #929292;
    color: #fff;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    padding: 4px 18px;
    margin: 0 4px;
    font-size: 16px;
}

.order-cards .actions li.disabled {
    display: none;
}


.error-page {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 40px;
}

.error-page img {
    width: 200px;
    height: 200px;
    pointer-events: none;
}
.error-page .error-content {
    border-bottom: 1px solid #003F39;
    border-left: 0;
    padding: 0 0 0 0;
    margin: 0 auto 10px auto;
    width: 240px;
    height: 220px;
}

.error-page .button-default {
    display: inline-block;
    margin: 10px 0 0 0;
}

@media(min-width: 768px) {
    .error-page {
        display: flex;
        justify-content: center;
        text-align: left;
    }
    .error-page img {
        display: inline-block;
    }
    .error-page .error-content {
        display: inline-block;
        border-bottom: 0;
        border-left: 1px solid #003F39;
        padding: 0 0 0 30px;
        margin: 0 0 0 30px;
        height: 280px;
    }
}

.error-page .error-status {
    font-size: 80px;
    font-weight: 800;
    margin-bottom: -20px;
    color: #003F39;
}
.error-page .error-title {
    color: #003F39;
    font-size: 20px;
    font-weight: 600;
}

table {
    background-color: transparent;
    border-collapse: collapse;
    border-spacing: 0;
  }
  caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777777;
    text-align: right;
  }
  th {
    text-align: right;
  }
  .table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse !important;
  }
  .table > thead > tr > th,
  .table > tbody > tr > th,
  .table > tfoot > tr > th,
  .table > thead > tr > td,
  .table > tbody > tr > td,
  .table > tfoot > tr > td {
    padding: 6px 0;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #dddddd;
  }
  .table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #dddddd;
  }
  .table > caption + thead > tr:first-child > th,
  .table > colgroup + thead > tr:first-child > th,
  .table > thead:first-child > tr:first-child > th,
  .table > caption + thead > tr:first-child > td,
  .table > colgroup + thead > tr:first-child > td,
  .table > thead:first-child > tr:first-child > td {
    border-top: 0;
  }
  .table > tbody + tbody {
    border-top: 2px solid #dddddd;
  }
  .table .table {
    background-color: #ffffff;
  }
  .table-condensed > thead > tr > th,
  .table-condensed > tbody > tr > th,
  .table-condensed > tfoot > tr > th,
  .table-condensed > thead > tr > td,
  .table-condensed > tbody > tr > td,
  .table-condensed > tfoot > tr > td {
    padding: 5px;
  }
  .table-bordered {
    border: 1px solid #dddddd;
  }
  .table-bordered > thead > tr > th,
  .table-bordered > tbody > tr > th,
  .table-bordered > tfoot > tr > th,
  .table-bordered > thead > tr > td,
  .table-bordered > tbody > tr > td,
  .table-bordered > tfoot > tr > td {
    border: 1px solid #dddddd;
  }
  .table-bordered > thead > tr > th,
  .table-bordered > thead > tr > td {
    border-bottom-width: 2px;
  }
  .table-striped > tbody > tr:nth-child(odd) {
    background-color: #f9f9f9;
  }
  .table-hover > tbody > tr:hover {
    background-color: #f5f5f5;
  }
  table col[class*="col-"] {
    position: static;
    float: none;
    display: table-column;
  }
  table td[class*="col-"],
  table th[class*="col-"] {
    position: static;
    float: none;
    display: table-cell;
  }
  .table > thead > tr > td.active,
  .table > tbody > tr > td.active,
  .table > tfoot > tr > td.active,
  .table > thead > tr > th.active,
  .table > tbody > tr > th.active,
  .table > tfoot > tr > th.active,
  .table > thead > tr.active > td,
  .table > tbody > tr.active > td,
  .table > tfoot > tr.active > td,
  .table > thead > tr.active > th,
  .table > tbody > tr.active > th,
  .table > tfoot > tr.active > th {
    background-color: #f5f5f5;
  }
  .table-hover > tbody > tr > td.active:hover,
  .table-hover > tbody > tr > th.active:hover,
  .table-hover > tbody > tr.active:hover > td,
  .table-hover > tbody > tr:hover > .active,
  .table-hover > tbody > tr.active:hover > th {
    background-color: #e8e8e8;
  }
  .table > thead > tr > td.success,
  .table > tbody > tr > td.success,
  .table > tfoot > tr > td.success,
  .table > thead > tr > th.success,
  .table > tbody > tr > th.success,
  .table > tfoot > tr > th.success,
  .table > thead > tr.success > td,
  .table > tbody > tr.success > td,
  .table > tfoot > tr.success > td,
  .table > thead > tr.success > th,
  .table > tbody > tr.success > th,
  .table > tfoot > tr.success > th {
    background-color: #dff0d8;
  }
  .table-hover > tbody > tr > td.success:hover,
  .table-hover > tbody > tr > th.success:hover,
  .table-hover > tbody > tr.success:hover > td,
  .table-hover > tbody > tr:hover > .success,
  .table-hover > tbody > tr.success:hover > th {
    background-color: #d0e9c6;
  }
  .table > thead > tr > td.info,
  .table > tbody > tr > td.info,
  .table > tfoot > tr > td.info,
  .table > thead > tr > th.info,
  .table > tbody > tr > th.info,
  .table > tfoot > tr > th.info,
  .table > thead > tr.info > td,
  .table > tbody > tr.info > td,
  .table > tfoot > tr.info > td,
  .table > thead > tr.info > th,
  .table > tbody > tr.info > th,
  .table > tfoot > tr.info > th {
    background-color: #d9edf7;
  }
  .table-hover > tbody > tr > td.info:hover,
  .table-hover > tbody > tr > th.info:hover,
  .table-hover > tbody > tr.info:hover > td,
  .table-hover > tbody > tr:hover > .info,
  .table-hover > tbody > tr.info:hover > th {
    background-color: #c4e3f3;
  }
  .table > thead > tr > td.warning,
  .table > tbody > tr > td.warning,
  .table > tfoot > tr > td.warning,
  .table > thead > tr > th.warning,
  .table > tbody > tr > th.warning,
  .table > tfoot > tr > th.warning,
  .table > thead > tr.warning > td,
  .table > tbody > tr.warning > td,
  .table > tfoot > tr.warning > td,
  .table > thead > tr.warning > th,
  .table > tbody > tr.warning > th,
  .table > tfoot > tr.warning > th {
    background-color: #fcf8e3;
  }
  .table-hover > tbody > tr > td.warning:hover,
  .table-hover > tbody > tr > th.warning:hover,
  .table-hover > tbody > tr.warning:hover > td,
  .table-hover > tbody > tr:hover > .warning,
  .table-hover > tbody > tr.warning:hover > th {
    background-color: #faf2cc;
  }
  .table > thead > tr > td.danger,
  .table > tbody > tr > td.danger,
  .table > tfoot > tr > td.danger,
  .table > thead > tr > th.danger,
  .table > tbody > tr > th.danger,
  .table > tfoot > tr > th.danger,
  .table > thead > tr.danger > td,
  .table > tbody > tr.danger > td,
  .table > tfoot > tr.danger > td,
  .table > thead > tr.danger > th,
  .table > tbody > tr.danger > th,
  .table > tfoot > tr.danger > th {
    background-color: #f2dede;
  }
  .table-hover > tbody > tr > td.danger:hover,
  .table-hover > tbody > tr > th.danger:hover,
  .table-hover > tbody > tr.danger:hover > td,
  .table-hover > tbody > tr:hover > .danger,
  .table-hover > tbody > tr.danger:hover > th {
    background-color: #ebcccc;
  }
  .table-responsive {
    overflow-x: auto;
    min-height: 0.01%;
  }
  @media screen and (max-width: 767px) {
    .table-responsive {
      width: 100%;
      margin-bottom: 15px;
      overflow-y: hidden;
      -ms-overflow-style: -ms-autohiding-scrollbar;
      border: 1px solid #dddddd;
    }
    .table-responsive > .table {
      margin-bottom: 0;
    }
    .table-responsive > .table > thead > tr > th,
    .table-responsive > .table > tbody > tr > th,
    .table-responsive > .table > tfoot > tr > th,
    .table-responsive > .table > thead > tr > td,
    .table-responsive > .table > tbody > tr > td,
    .table-responsive > .table > tfoot > tr > td {
      white-space: nowrap;
    }
    .table-responsive > .table-bordered {
      border: 0;
    }
    .table-responsive > .table-bordered > thead > tr > th:first-child,
    .table-responsive > .table-bordered > tbody > tr > th:first-child,
    .table-responsive > .table-bordered > tfoot > tr > th:first-child,
    .table-responsive > .table-bordered > thead > tr > td:first-child,
    .table-responsive > .table-bordered > tbody > tr > td:first-child,
    .table-responsive > .table-bordered > tfoot > tr > td:first-child {
      border-left: 0;
    }
    .table-responsive > .table-bordered > thead > tr > th:last-child,
    .table-responsive > .table-bordered > tbody > tr > th:last-child,
    .table-responsive > .table-bordered > tfoot > tr > th:last-child,
    .table-responsive > .table-bordered > thead > tr > td:last-child,
    .table-responsive > .table-bordered > tbody > tr > td:last-child,
    .table-responsive > .table-bordered > tfoot > tr > td:last-child {
      border-right: 0;
    }
    .table-responsive > .table-bordered > tbody > tr:last-child > th,
    .table-responsive > .table-bordered > tfoot > tr:last-child > th,
    .table-responsive > .table-bordered > tbody > tr:last-child > td,
    .table-responsive > .table-bordered > tfoot > tr:last-child > td {
      border-bottom: 0;
    }
  }

#google-map {
    display: block;
    height: 290px;
    width: 100%;
    margin: 0px;
    padding: 0px;
    border-radius: 9px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#map.selected > #google-map {
    height: 420px;
}


.rolldate-btn.rolldate-confirm::before, .overlay-button.overlay-confirm::before {
    font-family: "Font Awesome 5 Free";
    font-size: 17px;
    font-weight:600;
    justify-content: center;
    content: "\f00c";
}

.rolldate-btn.rolldate-cancel::before, .overlay-button.overlay-cancel::before {
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    font-weight:600;
    justify-content: center;
    content: "\f00d";
}


.img-100 {
    width: 80px;
    height: 80px;
    pointer-events: none;
}

.inline-items {
    display: inline-flex;
}

.price-title {
    text-align: right;
    font-size: 15px;
    font-weight: 600;
}

.final-price {
    display: none;
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 20px;
}

.final-price.done {
    display: block;
}

.final-price .fp1 {
    font-size: 22px;
    font-weight: 600;
    margin-right: 4px;
    color: #00594F;
}

.final-price .fp2 {
    color: #00594F;
}

.final-price a {
    font-weight: 500;
    font-size: 11px;
    color: #fff;
    padding: 0 8px;
    margin-right: 8px;
    border-radius: 11px;
    background-color: #00594F;
    cursor: pointer;
}


.price-loading {
    display: block;
}

.price-loading.done {
    display: none;
}

.price-years {
    color: #00594F;
}
.overlay-card table {
    font-size: 16px;
    text-align: right;
}
.overlay-card table td {
    color: #333333;
    font-weight: 500;
}

.overlay-card table td.value {
    color: #00594F;
    font-weight: 600;
}

.overlay-card {
    font-size: 20px;
    color: #333;
    text-align: center;
}
.overlay-card ul {
    margin: 0;
    padding: 0;
}
.overlay-card li {
    list-style-type: none;
}
.overlay-card header {
    position: relative;
    padding-top: 2px;
    line-height: 40px;
    font-size: 16px;
    font-weight: 600;
    border-bottom:1px solid #e0e0e0;
}
.overlay-card .overlay-mask {
    visibility: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(0,0,0,.4);
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.overlay-card .overlay-panel {
    position: fixed;
    border-radius: 14px;
    margin: auto;
    top: 155px;
    left: 20px;
    right: 20px;
    max-width: 290px;
    height: auto;
    z-index: 1000;
    background: #fff;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(.8);
    transform: scale(.8);
}

.overlay-card .overlay-panel.w-320 {
    max-width: 320px;
}
.overlay-card .overlay-panel.w-400 {
    max-width: 400px;
}
.overlay-card .overlay-panel.w-600 {
    max-width: 600px;
}

.overlay-card .overlay-panel.map {
    max-width: 600px;
}

.overlay-card .overlay-panel.national {
    max-width: 320px;
}

.overlay-card .overlay-panel.pay {
    max-width: 320px;
}

.overlay-card .overlay-panel.review {
    max-width: 420px;
}

.overlay-card .overlay-panel.t-200 {
    top: 250px;
}

.overlay-card .overlay-button {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    padding: 0 15px;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.overlay-card .overlay-content {
    padding: 8px 10px;
}

.overlay-button.overlay-confirm {
    top: 3px;
    left: auto;
    right: 0;
    color: #00594F
}

.overlay-button.overlay-cancel {
    top: 3px;
}

.overlay-card .overlay-panel.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

body.overlay-shown, body.rolldate-shown {
    overflow: hidden;
    height:auto !important;

}

.overlay-mask.active {
    visibility: visible;
}

@media screen and (max-width:414px){
    .overlay-card{
        font-size: 18px;
    }
}
@media screen and (max-width:320px){
    .overlay-card{
        font-size: 15px;
    }
}


.location_type {
    visibility: hidden;
    display: flex;
    position: absolute;
    width: 0px;
    height: 0px;
    padding: 0px;
    margin: -16px 0px 0px 0px;
    z-index: -999;
    border: 0;
}

.tab-item input:not([type="file"]):not([type="checkbox"]):not(.location_type).error,
.tab-item select.error,
.review-item input.error,
.review-item textarea.error,
.contact-form input.error,
.contact-form textarea.error,
.contact-form-item select.error,
.input-file:has(> input[type="file"].error),
.input-file input[type="file"].error ~ #choose-file-button {
    border: 1px solid #a94442;
}

.final-details {
    font-size: 15px;
    font-weight: 500;
    text-align: right;
}


.row-no-gutters [class*=col-] {
    padding-right: 0;
    padding-left: 0
}

.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}

.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
    float: right
}

.col-xs-12 {
    width: 100%
}

.col-xs-11 {
    width: 91.66666667%
}

.col-xs-10 {
    width: 83.33333333%
}

.col-xs-9 {
    width: 75%
}

.col-xs-8 {
    width: 66.66666667%
}

.col-xs-7 {
    width: 58.33333333%
}

.col-xs-6 {
    width: 50%
}

.col-xs-5 {
    width: 41.66666667%
}

.col-xs-4 {
    width: 33.33333333%
}

.col-xs-3 {
    width: 25%
}

.col-xs-2 {
    width: 16.66666667%
}

.col-xs-1 {
    width: 8.33333333%
}

.col-xs-pull-12 {
    right: 100%
}

.col-xs-pull-11 {
    right: 91.66666667%
}

.col-xs-pull-10 {
    right: 83.33333333%
}

.col-xs-pull-9 {
    right: 75%
}

.col-xs-pull-8 {
    right: 66.66666667%
}

.col-xs-pull-7 {
    right: 58.33333333%
}

.col-xs-pull-6 {
    right: 50%
}

.col-xs-pull-5 {
    right: 41.66666667%
}

.col-xs-pull-4 {
    right: 33.33333333%
}

.col-xs-pull-3 {
    right: 25%
}

.col-xs-pull-2 {
    right: 16.66666667%
}

.col-xs-pull-1 {
    right: 8.33333333%
}

.col-xs-pull-0 {
    right: auto
}

.col-xs-push-12 {
    right: 100%
}

.col-xs-push-11 {
    right: 91.66666667%
}

.col-xs-push-10 {
    right: 83.33333333%
}

.col-xs-push-9 {
    right: 75%
}

.col-xs-push-8 {
    right: 66.66666667%
}

.col-xs-push-7 {
    right: 58.33333333%
}

.col-xs-push-6 {
    right: 50%
}

.col-xs-push-5 {
    right: 41.66666667%
}

.col-xs-push-4 {
    right: 33.33333333%
}

.col-xs-push-3 {
    right: 25%
}

.col-xs-push-2 {
    right: 16.66666667%
}

.col-xs-push-1 {
    right: 8.33333333%
}

.col-xs-push-0 {
    right: auto
}

.col-xs-offset-12 {
    margin-right: 100%
}

.col-xs-offset-11 {
    margin-right: 91.66666667%
}

.col-xs-offset-10 {
    margin-right: 83.33333333%
}

.col-xs-offset-9 {
    margin-right: 75%
}

.col-xs-offset-8 {
    margin-right: 66.66666667%
}

.col-xs-offset-7 {
    margin-right: 58.33333333%
}

.col-xs-offset-6 {
    margin-right: 50%
}

.col-xs-offset-5 {
    margin-right: 41.66666667%
}

.col-xs-offset-4 {
    margin-right: 33.33333333%
}

.col-xs-offset-3 {
    margin-right: 25%
}

.col-xs-offset-2 {
    margin-right: 16.66666667%
}

.col-xs-offset-1 {
    margin-right: 8.33333333%
}

.col-xs-offset-0 {
    margin-right: 0
}

@media (min-width:768px) {

    .col-sm-12 {
        width: 100%
    }

    .col-sm-11 {
        width: 91.66666667%
    }

    .col-sm-10 {
        width: 83.33333333%
    }

    .col-sm-9 {
        width: 75%
    }

    .col-sm-8 {
        width: 66.66666667%
    }

    .col-sm-7 {
        width: 58.33333333%
    }

    .col-sm-6 {
        width: 50%
    }

    .col-sm-5 {
        width: 41.66666667%
    }

    .col-sm-4 {
        width: 33.33333333%
    }

    .col-sm-3 {
        width: 25%
    }

    .col-sm-2 {
        width: 16.66666667%
    }

    .col-sm-1 {
        width: 8.33333333%
    }

    .col-sm-pull-12 {
        right: 100%
    }

    .col-sm-pull-11 {
        right: 91.66666667%
    }

    .col-sm-pull-10 {
        right: 83.33333333%
    }

    .col-sm-pull-9 {
        right: 75%
    }

    .col-sm-pull-8 {
        right: 66.66666667%
    }

    .col-sm-pull-7 {
        right: 58.33333333%
    }

    .col-sm-pull-6 {
        right: 50%
    }

    .col-sm-pull-5 {
        right: 41.66666667%
    }

    .col-sm-pull-4 {
        right: 33.33333333%
    }

    .col-sm-pull-3 {
        right: 25%
    }

    .col-sm-pull-2 {
        right: 16.66666667%
    }

    .col-sm-pull-1 {
        right: 8.33333333%
    }

    .col-sm-pull-0 {
        right: auto
    }

    .col-sm-push-12 {
        right: 100%
    }

    .col-sm-push-11 {
        right: 91.66666667%
    }

    .col-sm-push-10 {
        right: 83.33333333%
    }

    .col-sm-push-9 {
        right: 75%
    }

    .col-sm-push-8 {
        right: 66.66666667%
    }

    .col-sm-push-7 {
        right: 58.33333333%
    }

    .col-sm-push-6 {
        right: 50%
    }

    .col-sm-push-5 {
        right: 41.66666667%
    }

    .col-sm-push-4 {
        right: 33.33333333%
    }

    .col-sm-push-3 {
        right: 25%
    }

    .col-sm-push-2 {
        right: 16.66666667%
    }

    .col-sm-push-1 {
        right: 8.33333333%
    }

    .col-sm-push-0 {
        right: auto
    }

    .col-sm-offset-12 {
        margin-right: 100%
    }

    .col-sm-offset-11 {
        margin-right: 91.66666667%
    }

    .col-sm-offset-10 {
        margin-right: 83.33333333%
    }

    .col-sm-offset-9 {
        margin-right: 75%
    }

    .col-sm-offset-8 {
        margin-right: 66.66666667%
    }

    .col-sm-offset-7 {
        margin-right: 58.33333333%
    }

    .col-sm-offset-6 {
        margin-right: 50%
    }

    .col-sm-offset-5 {
        margin-right: 41.66666667%
    }

    .col-sm-offset-4 {
        margin-right: 33.33333333%
    }

    .col-sm-offset-3 {
        margin-right: 25%
    }

    .col-sm-offset-2 {
        margin-right: 16.66666667%
    }

    .col-sm-offset-1 {
        margin-right: 8.33333333%
    }

    .col-sm-offset-0 {
        margin-right: 0
    }
}

@media (min-width:992px) {

    .col-md-12 {
        width: 100%
    }

    .col-md-11 {
        width: 91.66666667%
    }

    .col-md-10 {
        width: 83.33333333%
    }

    .col-md-9 {
        width: 75%
    }

    .col-md-8 {
        width: 66.66666667%
    }

    .col-md-7 {
        width: 58.33333333%
    }

    .col-md-6 {
        width: 50%
    }

    .col-md-5 {
        width: 41.66666667%
    }

    .col-md-4 {
        width: 33.33333333%
    }

    .col-md-3 {
        width: 25%
    }

    .col-md-2 {
        width: 16.66666667%
    }

    .col-md-1 {
        width: 8.33333333%
    }

    .col-md-pull-12 {
        right: 100%
    }

    .col-md-pull-11 {
        right: 91.66666667%
    }

    .col-md-pull-10 {
        right: 83.33333333%
    }

    .col-md-pull-9 {
        right: 75%
    }

    .col-md-pull-8 {
        right: 66.66666667%
    }

    .col-md-pull-7 {
        right: 58.33333333%
    }

    .col-md-pull-6 {
        right: 50%
    }

    .col-md-pull-5 {
        right: 41.66666667%
    }

    .col-md-pull-4 {
        right: 33.33333333%
    }

    .col-md-pull-3 {
        right: 25%
    }

    .col-md-pull-2 {
        right: 16.66666667%
    }

    .col-md-pull-1 {
        right: 8.33333333%
    }

    .col-md-pull-0 {
        right: auto
    }

    .col-md-push-12 {
        right: 100%
    }

    .col-md-push-11 {
        right: 91.66666667%
    }

    .col-md-push-10 {
        right: 83.33333333%
    }

    .col-md-push-9 {
        right: 75%
    }

    .col-md-push-8 {
        right: 66.66666667%
    }

    .col-md-push-7 {
        right: 58.33333333%
    }

    .col-md-push-6 {
        right: 50%
    }

    .col-md-push-5 {
        right: 41.66666667%
    }

    .col-md-push-4 {
        right: 33.33333333%
    }

    .col-md-push-3 {
        right: 25%
    }

    .col-md-push-2 {
        right: 16.66666667%
    }

    .col-md-push-1 {
        right: 8.33333333%
    }

    .col-md-push-0 {
        right: auto
    }

    .col-md-offset-12 {
        margin-right: 100%
    }

    .col-md-offset-11 {
        margin-right: 91.66666667%
    }

    .col-md-offset-10 {
        margin-right: 83.33333333%
    }

    .col-md-offset-9 {
        margin-right: 75%
    }

    .col-md-offset-8 {
        margin-right: 66.66666667%
    }

    .col-md-offset-7 {
        margin-right: 58.33333333%
    }

    .col-md-offset-6 {
        margin-right: 50%
    }

    .col-md-offset-5 {
        margin-right: 41.66666667%
    }

    .col-md-offset-4 {
        margin-right: 33.33333333%
    }

    .col-md-offset-3 {
        margin-right: 25%
    }

    .col-md-offset-2 {
        margin-right: 16.66666667%
    }

    .col-md-offset-1 {
        margin-right: 8.33333333%
    }

    .col-md-offset-0 {
        margin-right: 0
    }
}

@media (min-width:1200px) {

    .col-lg-12 {
        width: 100%
    }

    .col-lg-11 {
        width: 91.66666667%
    }

    .col-lg-10 {
        width: 83.33333333%
    }

    .col-lg-9 {
        width: 75%
    }

    .col-lg-8 {
        width: 66.66666667%
    }

    .col-lg-7 {
        width: 58.33333333%
    }

    .col-lg-6 {
        width: 50%
    }

    .col-lg-5 {
        width: 41.66666667%
    }

    .col-lg-4 {
        width: 33.33333333%
    }

    .col-lg-3 {
        width: 25%
    }

    .col-lg-2 {
        width: 16.66666667%
    }

    .col-lg-1 {
        width: 8.33333333%
    }

    .col-lg-pull-12 {
        right: 100%
    }

    .col-lg-pull-11 {
        right: 91.66666667%
    }

    .col-lg-pull-10 {
        right: 83.33333333%
    }

    .col-lg-pull-9 {
        right: 75%
    }

    .col-lg-pull-8 {
        right: 66.66666667%
    }

    .col-lg-pull-7 {
        right: 58.33333333%
    }

    .col-lg-pull-6 {
        right: 50%
    }

    .col-lg-pull-5 {
        right: 41.66666667%
    }

    .col-lg-pull-4 {
        right: 33.33333333%
    }

    .col-lg-pull-3 {
        right: 25%
    }

    .col-lg-pull-2 {
        right: 16.66666667%
    }

    .col-lg-pull-1 {
        right: 8.33333333%
    }

    .col-lg-pull-0 {
        right: auto
    }

    .col-lg-push-12 {
        right: 100%
    }

    .col-lg-push-11 {
        right: 91.66666667%
    }

    .col-lg-push-10 {
        right: 83.33333333%
    }

    .col-lg-push-9 {
        right: 75%
    }

    .col-lg-push-8 {
        right: 66.66666667%
    }

    .col-lg-push-7 {
        right: 58.33333333%
    }

    .col-lg-push-6 {
        right: 50%
    }

    .col-lg-push-5 {
        right: 41.66666667%
    }

    .col-lg-push-4 {
        right: 33.33333333%
    }

    .col-lg-push-3 {
        right: 25%
    }

    .col-lg-push-2 {
        right: 16.66666667%
    }

    .col-lg-push-1 {
        right: 8.33333333%
    }

    .col-lg-push-0 {
        right: auto
    }

    .col-lg-offset-12 {
        margin-right: 100%
    }

    .col-lg-offset-11 {
        margin-right: 91.66666667%
    }

    .col-lg-offset-10 {
        margin-right: 83.33333333%
    }

    .col-lg-offset-9 {
        margin-right: 75%
    }

    .col-lg-offset-8 {
        margin-right: 66.66666667%
    }

    .col-lg-offset-7 {
        margin-right: 58.33333333%
    }

    .col-lg-offset-6 {
        margin-right: 50%
    }

    .col-lg-offset-5 {
        margin-right: 41.66666667%
    }

    .col-lg-offset-4 {
        margin-right: 33.33333333%
    }

    .col-lg-offset-3 {
        margin-right: 25%
    }

    .col-lg-offset-2 {
        margin-right: 16.66666667%
    }

    .col-lg-offset-1 {
        margin-right: 8.33333333%
    }

    .col-lg-offset-0 {
        margin-right: 0
    }
}

table {
    background-color: transparent
}

table col[class*=col-] {
    position: static;
    display: table-column;
    float: none
}

table td[class*=col-],
table th[class*=col-] {
    position: static;
    display: table-cell;
    float: none
}

caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777;
    text-align: right
}

th {
    text-align: right
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd
}

.table>thead>tr>th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd
}

.table>caption+thead>tr:first-child>td,
.table>caption+thead>tr:first-child>th,
.table>colgroup+thead>tr:first-child>td,
.table>colgroup+thead>tr:first-child>th,
.table>thead:first-child>tr:first-child>td,
.table>thead:first-child>tr:first-child>th {
    border-top: 0
}

.table>tbody+tbody {
    border-top: 2px solid #ddd
}


.row{margin-right:-15px;margin-left:-15px}
.row:after,.row:before{display:table;content:" "}
.row:after{clear:both}

.button-flat {
    border-radius: 8px;
    font-size: 15px;
}

.page-margin {
    margin: 0;
}

@media (min-width:1200px) {

    .page-margin {
        margin: 0 200px;
    }

}

.pagination-details {
    display: inline-block;
    font-size: 15px;
    font-weight:700;
    padding-bottom: 10px;
}

.contract-info  {
    display: block;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px 10px;
    margin: 10px 0;
}

.contract-items  {
    display: grid;
}

.contract-item {
    padding: 0 15px 15px 15px;
}

.contract-item:nth-child(6),.contract-item:nth-child(7) {
    padding: 0 15px;
}

.contract-items.contract-list {
    grid-template-columns: 1fr 1fr;
}


@media(min-width: 768px) {
   
    .contract-items.contract-list {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr auto;
    }

    .contract-items.contract-list.no-actions {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    }
 
    .contract-item {
        padding: 0 15px;
    }
}




.contract-item label {
    display: block;
}

.contract-item label.title {
    font-size: 14px;
    color: #777;
}

.contract-action {
    width: 22px;
    height: 22px;
}

.contract-items:not(.contract-fixed) .contract-item:first-child {
    display: block;
    position: absolute;
    left: 15px;
    grid-column: 7;
    grid-row: 1 ;
}

.contract-action svg {
    fill: #003F39;
    width: 22px;
    height: 22px;
}

.badge {
    display: inline-block;
    font-size: 12px;
    color: white;
    padding: 1px 8px;
    text-align: center;
    border-radius: 10px;
}


.badge-success {
    background: #b5ffbc;
    color: #12771a;
}

.badge-light {
    background: #cacaca;
    color: #3d3d3d;
}

.badge-warning {
    background: #faecbd;
    color: #af8600;
}

.badge-danger {
    background: #f8c9c9;
    color: #c20c0c;
}


.text-danger {
    color: #c20c0c;
}

.header-content {
    background: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    width: 100%;
    position: relative;
    padding: 30px 15px
}


@media(min-width: 768px) {
    .header-content {
        height: 70px;
    }
}

.header-user-menu {
    display: none;
    position: absolute;
    top: 20px;
    right: 0;
    margin: 20px 10px;
}

.header-user-menu a {
    font-size: 14px;
    font-weight: 500;
    margin: 0 10px;
    padding: 0 4px 4px 4px;
    color: #003F39;
}

.header-user-menu a.active {
    color: #00594F;
    border-bottom: 2px solid #00594F;
}

.header-user-menu a.button-primary {
    color: #fff;
}

@media(min-width: 768px) {
    .header-user-menu {
        display: flex;
    }
}

.dropdown {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin: 0 10px;
    padding: 0 4px 4px 4px;
    color: #003F39;
    cursor: pointer;
}

.dropdown.dropdown-zero {
    margin: 0;
    padding: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: max-content;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    margin: 0 -4px;
    z-index: 9999;
}

.dropdown-content.left {
    left: 0;
}


.item-left {
    position: absolute;
    left: 0;
    margin: 0;
}

.item-left-15 {
    position: absolute;
    left: 15px;
    margin: 0;
}

.dropdown i {
    font-size: 12px;
    padding: 0 2px 0 0;
}

.dropdown.active {
    color: #00594F;
    border-bottom: 2px solid #00594F;
}

.dropdown .dropdown-mask {
    cursor: default;
    visibility: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

.dropdown .dropdown-mask.show {
    visibility: visible;
}

.dropdown:hover:not(.dropdown-click) .dropdown-content {
    display: block;
}

.dropdown.dropdown-click .dropdown-content.show {
    display: block;
}



.contract-items.contract-fixed {
    grid-template-columns: 1fr 1fr;
}

.contract-items.contract-fixed .contract-item {
    padding: 0 15px 15px 15px;
}

.contract-info .contract-card-title {
    display: block;
    margin: 0 15px 15px 15px;
    padding: 0 0 10px 0;
}

.border-bottom {
    border-bottom: 1px solid #b6b6b6;
}

.contract-dark-item {
    background: #f3f4f5;
    margin-top: 4px;
    padding: 10px;
}

.contract-items.grid-1 {
    grid-template-columns: 1fr;
}
.contract-items.grid-2 {
    grid-template-columns: 1fr;
}

@media(min-width: 992px) {

    .contract-items.grid-2 {
        grid-template-columns: 1fr 1fr;
    }

}

.padding-top-10 {
    padding-top: 10px;
}
.padding-top-20 {
    padding-top: 20px;
}

.padding-bottom-5 {
    padding-bottom: 5px;
}

.padding-bottom-10 {
    padding-bottom: 10px;
}

.inline-block {
    display: inline-block;
}

.grid-items-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

#contract-map {
    display: block;
    height: 300px;
}

.tab-item .input.card-input {
    margin: 8px 0;
}

.tab-item .input.card-input .button-default {
    padding: 2px 8px;
    text-align: right;
}

.padding-alert {
    padding: 10px 20px;
}

.contract-large-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.contract-plus {
    vertical-align: middle;
    color: #ffffff;
    background: #185a57;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    text-align: center;
    padding-top: 3px;
    font-size: 13px;
}

.contract-id {
    color: #00594F;
}

.info-section-item img {
    display: inline-block;
    width: 45px;
    vertical-align: middle;
    margin: 0 0 0 10px;
}

.info-section-item h4 {
    display: inline-block;
}

.info-section-feature::before {
    content: '⦁';
    font-size: 18px;
    padding: 0 0 0 4px;
}

.info-section-feature {
    font-size: 15px;
    font-weight: 500;
    padding: 15px 0 0 0;
}

.inline-block {
    display: inline-block;
}

.grid-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}


.top-item {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    margin: 0 0 40px 0;
}

.top-content {
    padding: 10px 0 0 0;
}


.filter-items .contract-info img {
    display: inline-block;
    float: left;
    width: 35px;
    height: 35px;
    vertical-align: middle;
    margin-left: 10px;
}

.filter-items .contract-info h5 {
    margin-right: 10px;
}

.filter-items .contract-info .inline {
    display: inline-block;
}


.financial-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 15px;
}

    
@media(min-width: 768px) {
    .financial-items {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.financial-item {
    display: inline-block;
    padding: 15px 10px;
    border-radius: 13px;
    border: 1px solid #cccccc;
}

.financial-item img {
    float: left;
    width: 55px;
}

.font-14 {
    font-size: 14px;
}

.margin-top-10 {
    display: block;
    margin-top: 10;
}

.font-13 {
    font-size: 13px;
}

.financial-border {
    display: block;
    margin: 20px 0 15px 0;
    border-bottom: 1px solid #cccccc;
}

.filter-items {
    display: grid;
    grid-template-columns: 1fr;
}

@media(min-width: 768px) {

    .filter-items {
        grid-gap: 15px;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .filter-items.three {
        grid-gap: 15px;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.filter-items .contract-info img {
    display: inline-block;
    float: left;
    width: 45px;
    height: 45px;
    vertical-align: middle;
    margin-left: 10px;
}

.filter-items .contract-info *:not(.contract-card-title) {
    font-size: 14px;
}

.filter-items .contract-info .value {
    font-weight: 600;
    margin-right: 4px;
    width: 40px;
}

.filter-items .contract-info .contract-card-title {
    margin: 0 0 15px 0;
}

.filter-items .contract-info .inline {
    display: inline-block;
}


