:root {
    --bs-modal-width: 1240px;
}

.fw-bolder {
   font-weight: 800 !important;
}

.fw-black {
    font-weight: 900 !important;
 }

.btn {
    height: 40px;
    width: auto;
    padding: 5px 20px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 42px;
    line-height: normal;
    text-transform: capitalize;
    border: none;
    width: fit-content;
    white-space: nowrap;
}

.btn i {
    font-size: 18px;
    margin-left: 12px;
    display: inline-block;
}

.btn i.fa-arrow-right {
    transform: rotate(-40deg);
}


.btn i.fa-arrow-right.rotate-none {
   transform: nonr;
}

.modal-header .btn-close {
    box-shadow: none;
}

.btn:focus-visible {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    outline: 0;
    box-shadow: none;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn.white-btn {
    background-color: var(--light-color);
    color: var(--light-color);
    color: var(--primary-color);
    font-weight: 800;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary {
    background-color: var(--darker-color);
    border-color: var(--darker-color);
}

.btn-primary:hover,
.btn-primary:focus {
    box-shadow: none;
    background-color: var(--dark-color);
    border-color: var(--dark-color);
}

.btn-secondary:hover,
.btn-secondary:focus {
    box-shadow: none;
    background-color: var(--dark-color);
    border-color: var(--dark-color);
}

.btn.white-btn:hover,
.btn.white-btn:focus {
    box-shadow: none;
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    color: var(--light-color);
}

.h3, h3 {
    font-size: 20px;
    line-height: 1.25;
}

.h4, h4 {
    font-size: 18px;
}

/*# Form */
.form-label {
    font-weight: 700;
    color: var(--darker-color);
    line-height: 20px;
    position: relative;
    text-transform: capitalize;
    display: inline-block;
}

.form-control,.form-select {
    height: 44px;
    border-radius: 44px;
    font-size: 14px;
    line-height: normal;
    padding: 5px 16px;
    color: var(--darker-color);
    font-weight: 500;
    border-color: rgba(57, 105, 73, 0.2);
    background: var(--light-color);
}

.select-down-arrow {
    background-image: url(../images/down-icon-grey.svg);
    background-repeat: no-repeat;
    width: 16px;
    height: 10px;
    position: absolute;
    top: calc(50% - 4px);
    right: 16px;
    transition: ease all 0.125s;
}

.form-select:focus + .select-down-arrow,
.form-select:active + .select-down-arrow {
   transform: rotate(180deg);
}

.form-control:hover,
.form-select:hover {
    border-color: rgba(57, 105, 73, 0.35);
}

.form-control:focus,
.form-select:focus {
    color: var(--darker-color);
    background-color: var(--bs-body-bg);
    border-color: rgba(57, 105, 73, 0.2);
    outline: 0;
    box-shadow: 0 0 10px 0 rgba(57, 105, 73, 0.2);
}

/*# Modals */

  .btn-close {
    background-image: url(../images/close.svg);
    background-size: 18px auto;
    opacity: 1;
    width: 24px;
    background-position: center center;
    height: 24px;
  }
  
  .modal-title {
    text-transform: capitalize;
    color: #000000;
    line-height: normal;
    font-size: 20px;
  }

  .modal-body .modal-title {
    line-height: normal;
  }

  .modal .btn {
    padding-left: 15px;
    padding-right: 15px;
    min-width: 98px;
  }
  
 .modal-header {
    border-top-left-radius: var(--modal-radius);
    border-top-right-radius: var(--modal-radius);
    background: #F1F1F1;
    border: none;
    padding: 12px 16px;
 }
  
  .modal-content {
    border: none;
    box-shadow: none;
  }

  .modal-body {
    padding-top: 20px;
    padding-bottom: 25px;
  }
  
  .modal-footer {
    border-top-color: rgba(0, 0, 0, 0.4);
    border-bottom-left-radius: var(--modal-radius);
    border-bottom-right-radius: var(--modal-radius);
  }

@media (min-width: 768px) {
    /* Modal */
    .modal-lg {
        --bs-modal-width: 850px;
    }
}  

@media (min-width: 992px) {
    .btn {
        padding: 5px 15px;
    }
    .btn-close {
        background-size: 22px auto;
    }   
    .modal-footer {
        padding: 16px 20px;
    }   
}

@media (min-width: 1200px) {
    .btn {
        font-size: 15px;
        height: 42px;
    }
    .h3, h3 {
        font-size: 24px;
    }
    .h4, h4 {
        font-size: 21px;
    }
    /*# Form */
    .form-label {
        font-size: 15px;
    }
    .form-control,.form-select {
        font-size: 15px;
    }  
}

@media (min-width: 1400px) {
    .container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl {
        max-width:1380px;
    }
    /* Basic */
    .btn {
        height: 45px;
        padding: 5px 24px;
        border-radius: 45px;
    }
    /* Modal */
         
}

