:root {
    /* Fonts */
    --font-size-10: 10px;
    --font-size-12: 12px;
    --font-size-14: 14px;
    --font-size-18: 18px;
    --font-size-24: 24px;
    --font-size-28: 28px;
    --font-size-32: 32px;

    /* Border */
    --border-color: #F1F1F1;
    
    /* Font Weight */
    --font-weight-600: 600;

    /* Font Families */
    --font-family-rubik: Rubik;
    --font-family-poppins: Poppins;

    /* Colors */
    --primary-color: #828282;
    --secondary-color: #142250;
    --tertiary-color: #010F1C;
    --btn-bg-color: var(--brand-color);
    --text-red-color: var(--brand-color);

    /* Height */
    --height-56: 56px;
}

body {
    margin: 0;
}


/* //////////////////////////// Custom Global Classes //////////////////////////////////////////// */


/* ---------------------------------------------- Borders -------------------------------- */
.custom-border-top {
    border: 1px solid var(--border-color);
}

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

.custom-border {
    border: 1px solid var(--border-color);
}
.custom-border-none {
    border: none!important;
    border: unset!important;
    outline: unset!important;
}

/* ------------------------------------------------ Font Sizes ------------------------------------------ */

.font-size-10{
    font-size: var(--font-size-10);
}
.font-size-12 {
    font-size: var(--font-size-12);
}
.font-size-14 {
    font-size: var(--font-size-14);
}
.font-size-18 {
    font-size: var(--font-size-18);
}
.font-size-24 {
    font-size: var(--font-size-24);
}
.font-size-28 {
    font-size: var(--font-size-28);
}
.font-size-32 {
    font-size: var(--font-size-32);
}

/* ------------------------------------------------ Font Weight ------------------------------------------ */


.font-weight-600 {
    font-weight: var(--font-weight-600);
}
.fw-medium {
    font-weight: 500;
}

/* ------------------------------------------------ Font Families ------------------------------------------ */

.ff-rubik {
    font-family: var(--font-family-rubik);
}

.ff-poppins {
    font-family: var(--font-family-poppins);
}

/* ------------------------------------------------ Text Colors ------------------------------------------ */


.text-pc {
    color: var(--primary-color);
}

.text-sc {
    color: var(--secondary-color);
}

.text-tc {
    color: var(--tertiary-color);
}
.text-red-color{
    color: var(--text-red-color);
}

/* ------------------------------------------------ Button Bg Color ------------------------------------------ */

.btn-bg-color {
    background-color: var(--btn-bg-color);
}

/* ------------------------------------------------ Radius ------------------------------------------ */

.rounded-24{
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
}


/* ------------------------------------------------ Height ------------------------------------------ */

.custom-height-56{
    height:var(--height-56);
}

/* ------------------------------------------------ Form Style ------------------------------------------ */


input::placeholder,
textarea::placeholder {
    color: #AFAFAF!important;
    font-family: Poppins!important;
    font-size: 16px!important;
    font-weight: 400!important;
}


.custom-textarea-height {
    min-height: 120px!important;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border: 1px solid #E8E8E8;
    border-radius: 8px;
}

/* ------------------------------------------------ Positions ------------------------------------------ */

.position-relative {
    position: relative;
}

/* ------------------------------------------------ Custom Input style ------------------------------------------ */



.custom-input-style {
    background-color: unset!important;
    padding-right: 0;
    border-right: 0!important;
    border: none;
    background-color: transparent;
    border-radius: 50px 0 0 50px;
}

.custom-input {
    border-left: 0!important;
    border: none;
    border-radius: 0 50px 50px 0;
    height: 42px;
    background-color: unset;
}

hr {
    background-color: #E8E8E8;
}

.custom-label {
    background: #fff;
    font-size: 12px;
    position: absolute;
    left: 6%;
    top: -12%;
    z-index: 1;
    width: fit-content;
    padding: 0;
}
.form-control:focus{
    box-shadow: unset;
    border: unset;
    background-color: unset;
}

.custom-input-group {
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid #ced4da !important;
    padding-top: 4px;
    padding-bottom: 4px;
}

/* ------------------------------------------------ Custom label Style ------------------------------------------ */


.custom-label-style {
    background: #fff;
    font-size: 12px;
    position: absolute;
    left: 4%;
    top: -7%;
    z-index: 1;
    padding: 0 4px;
}

/* ------------------------------------------------ Add Cart Buttons ------------------------------------------ */


.btn-circle {
    border-radius: 50% !important;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1.33px solid #F1F1F1;
    box-shadow: 0px 6.06px 14.82px -4.04px #87878717;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}


/* /////////////////////////////////////////////// Details Header ////////////////////////////////////////// */



.custom-select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-select-icon {
    position: absolute;
    left: 3.5%;
    top: 49%;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
}

.custom-form-select {
    padding-left: 5.5%;
    border-radius: 50px;
    height: 56px;
    color: #AFAFAF;
    font-family: var(--font-family-poppins);
    font-weight: 400;
    font-size: 16px;
}


/* Radio Button Style */

.custom-modal-border-radius {
    border-radius: 28px;
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    -ms-border-radius: 28px;
    -o-border-radius: 28px;
}
.custom-radio-label {
    display: block;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff;
}
.form-check-input[type=radio] {
    border-width: 2.4px!important;
    height: 24px!important;
    width: 24px!important;
    border-color: #49454F!important;
}

/* //////////////////////////////////////////// Media Query Pints ///////////////////////////////////////// */




@media (max-width : 1024px){
   
}
@media (max-width: 768px) {

    .custom-textarea-height {
        min-height: 160px!important;
    }
    .font-size-24 {
        font-size: 20px!important;
    }
    .font-size-32 {
        font-size: 24px;
    }
    .hr {
        height: 1px;
        width: 100%;
        background-color: #E8E8E8;
        margin-top: 0.7rem;
    }
    .btn-circle {
        height: 30px;
        width: 30px;
        font-size: 18px;
    }
    .custom-label-style {
        font-size: 10px;
    }
    input::placeholder,
    textarea::placeholder {
        font-size: 12px!important;
    }
 
}

@media (max-width: 600px) {
    .mb-m-65{
        margin-bottom: 65px !important;
    }
}
@media (max-width: 425px) {
    .font-size-18 {
        font-size: 14px!important;
    }
    .font-size-24 {
        font-size: 16px!important;
    }
    .font-size-28 {
        font-size: 24px;
    }
    .custom-label {
        left: 3%;
        font-size: 10px;
        width: 15%;
    }
    .font-size-32 {
        font-size: 16px;
    }
 
    .custom-select-icon {
        position: absolute;
        left: 7%;
    
    }
    .custom-form-select {
        padding-left: 12%;
    }
}

@media (max-width: 375px) {
    .font-size-24 {
        font-size: 14px!important;
    }
    .btn-circle {
        height: 24px;
        width: 24px;
        font-size: 16px;
    }
}

@media (max-width: 320px) {
   
}

.address-block-container.row .custom-input{
    width: 100%;
}
/*#ce-create-partner-form-section .addressFields.col-12 .form-group{
    margin-top: 16px !important;
}*/
#ce-create-partner-form-section .address-block .row {
    gap: 16px;
    margin-top: 16px;
}

#registerationForm .create-account .address-block .row{
    gap: 10px 16px;
    margin-top: 10px;
    margin-bottom: 10px;
}
#moreInfoModal .address-block .row{
    gap: 10px 16px;
    margin-top: 10px;
    margin-bottom: 10px;
}
#provider-edit-form .form-group > label {
    top: auto;
}
header a:not(#brand-logo, header-custom-button) {
    padding-top: 12px !important;
}