﻿/*This file is for general controls styles*/

.btn {
    display: flex;
    min-width: 150px;
    height: 42px;
   
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    border-radius: 6px;
    text-align: center;
    /* Button Text/Button TX 1 */
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}


/*Primary button*/

.primary-button {
    background: var(--Brand_Color, #0961C7)!important;
    color: var(--white, #fff);
    transition: unset !important;
}

    .primary-button:hover {
        border-radius: 6px;
        background: linear-gradient(99deg, #0961C7 44.9%, #074793 100%);
        box-shadow: 0px 5px 15px 0px rgba(0, 27, 60, 0.20);
        transition: unset !important;
        color: var(--white, #fff);
    }

    .primary-button:active {
        border-radius: 6px;
        background: linear-gradient(99deg, #0961C7 44.9%, #074793 100%);
        box-shadow: 0px 5px 15px 0px rgba(0, 27, 60, 0.20);
        transition: unset !important;
        color: var(--white, #fff) !important;
        border-color: unset !important;
    }
    .primary-button img {
        padding-right: 10px;
    }

.button-disabled {
    opacity: 0.5!important
}

.secondary-button {
    border: 1px solid var(--Brand_Color, #B1B2B8);
    background: transparent;
    color: var(--Brand_Color, #010714);
}

    .secondary-button:hover {
        color: var(--color-white) !important;
        border-color: var(--Brand_Color);
        background: linear-gradient(150deg, #0961C7 0%, #074793 100%);
        box-shadow: 0px 5px 15px rgba(0, 27, 60, 0.20);
        border: 1px #0961C7 solid;
    }
    .secondary-button:active {
        color: var(--color-white) !important;
        border-color: var(--Brand_Color) !important;
        background: linear-gradient(150deg, #0961C7 0%, #074793 100%);
        box-shadow: 0px 5px 15px rgba(0, 27, 60, 0.20);
        border: 1px #0961C7 solid;
    }
    .secondary-button.show {
        color: var(--color-white) !important;
        border-color: var(--Brand_Color) !important;
        background: linear-gradient(150deg, #0961C7 0%, #074793 100%);
        box-shadow: 0px 5px 15px rgba(0, 27, 60, 0.20);
        border: 1px #0961C7 solid;
    }
    .secondary-button:hover svg {
        fill: var(--color-white);
    }
    .secondary-button.show svg {
        fill: var(--color-white);
    }

.impact-button {
    color: var(--Interface-Status-Red, #C5322D);
    display: flex;
    width: 150px;
    height: 42.169px;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    border-radius: 6px;
    border: 1px solid var(--Interface-Status-Red, #C5322D);
}

    .impact-button:hover {
        display: flex;
        width: 130px;
        height: 42px;
        padding: 16px;
        justify-content: center;
        align-items: center;
        gap: 12px;
        flex-shrink: 0;
        border-radius: 6px;
        background: var(--Interface-Status-Red, #C5322D);
        color: var(--color-white, #fff);
    }


.remove-button {
    width: 160px;
    height: 42px;
    border: 1px solid #CF1E2D;
    background: #FFF;
    font-size: 19px;
    color: #CF1E2D;
    font-weight: 600;
}

    .remove-button:hover {
        background: #CF1E2D;
        color: #FFF;
    }

.ghost-button {
    display: flex;
    width: 130px;
    height: 42.169px;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    border-radius: 6px;
    color: var(--TX-Secondary, #67696F);
    border: 1px solid var(--Str-Button-Ghost, #B1B2B8);
}

    .ghost-button:hover {
        border-radius: 6px;
        border: 1px solid var(--Str-Button-Ghost, #B1B2B8);
    }

.add-button {
    padding: 0px;
    width: 32px;
    height: 32px;
    min-width: unset;
    border: 1px solid var(--Str-Form-Inputs-Checkbox);
}
    .add-button:hover {
        border-color: var(--Brand_Color);
        background: #F2F2F3;
        background: linear-gradient(150deg, #0961C7 0%, #074793 100%);
        box-shadow: 0px 5px 15px rgba(0, 27, 60, 0.20);
        border: 1px #0961C7 solid;
    }
        .add-button:hover svg {
            fill: var(--color-white);
        }
/*Textbox label+input */

.textbox-control {
}

    .textbox-control input {
        width: 100%;
        height: 46px;
        flex-shrink: 0;
        align-self: stretch;
        border-radius: 6px;
        border: 1px solid var(--Str-General);
        padding-left: 10px;
        background: var(--BG-Pop-UP, #181E29);
        color: var(--TX_Primary, #A5B4D1);
    }

    .textbox-control label {
        font-family: "Work Sans";
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        color: var(--TX-Secondary, #67696F);
        
        /*border-block-color: #B1B2B8;*/
    }

    .textbox-control .input-validation-message {
        color: var(--Primary-Colors-Red, #D7534E);
        /* Body Text/Medium/Body text 2 */
        font-family: "Work Sans";
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }


.small-img {
    width: 14px;
    height: 14px;
}

.icon-img {
    width: 16px;
    height: 16px;
}

.large-icon-img {
    width: 18px;
    height: 18px;
}


.hidden {
    display: none;
}

form label {
    color: var(--TX-Secondary);
    font-size: 14px;
    line-height: 140%;
    margin-bottom: 4px;
}

.checkbox {
    padding-bottom: 12px;
   
}

.checkbox input {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color:red
}

    .checkbox span {
        color: var(--TX-Disabled, #81838A);
        /* Subtitle 1 */
        font-family: "Work Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        vertical-align: top;
        padding-left: 12px
    }



