
.custom-dropdown__select {
    font-family: 'ProximaNova_Regular';
    color: #122b46;
    opacity: 1;
    font-size: 13px; /* inherit size from .custom-dropdown */
    padding-left: 8px;
    padding-top: 0px;
    text-align: left margin: 0; /* remove default margins */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
}

.custom-dropdown__select--Grey {
    background-color: #FFFFFF !important;
    border: 1px solid #E2E2E2;
    width: 219px;
    height: 47px;
    max-width: 449px;
}

.custom-dropdown__select option {
    padding-bottom: 5px;
    padding-left: 10px;
    background-color: white; /*Color of option BG*/
    color: #333333;
}

@supports (pointer-events: none) and ((-webkit-appearance: none) or
      (-moz-appearance: none) or
      (appearance: none)) {
    .custom-dropdown {
        position: relative;
        display: inline-block;
        vertical-align: middle;
    }

    .custom-dropdown__select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    .custom-dropdown::before,
    .custom-dropdown::after {
        content: "";
        position: absolute;
        pointer-events: none;
    }

    .custom-dropdown::after { /*  Custom dropdown arrow */
        content: url("../../images/arrow2.png");
        font-size: 0px;
        height: 6px;
        line-height: 1;
        right: 13px;
        top: 50%;
        margin-top: -3px;
    }

    .custom-dropdown:hover:after { /*  Custom dropdown arrow */
        content: url('../../images/arrow2.png');
    }

    .custom-dropdown::before { /*  Custom dropdown arrow cover */
        width: 2.9em;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .custom-dropdown__select[disabled] {
        color: rgba(102,102,102,1);
    }

    .custom-dropdown.custom-dropdown--disabled::after {
        color: rgba(102,102,102,1);
    }
    /* Grey dropdown style */
    .custom-dropdown--Grey::before {
        top: 2px;
        bottom: 0px;
        background-color: #FFFFFF !important;
        border-right: 1px solid #E2E2E2 !important;
        border-top: 0px solid #E2E2E2 !important;
        border-bottom: 1px solid #E2E2E2 !important;
        border-left: 1px solid #E2E2E2 !important;
        width: 36px !important;
        /*border: 1px solid #CBCBCB;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;*/
    }

    .custom-dropdown--Grey::after {
        color: rgba(224,224,224,224);
    }



    .borderColorCustomError::before {
        top: 1px;
        bottom: 0px;
        background-color: #FFFFFF !important;
        border-right: 1px solid #D11141 !important;
        border-top: 0px solid #D11141 !important;
        border-bottom: 1px solid #D11141 !important;
        border-left: 1px solid #D11141 !important;
        width: 36px !important;
        /*border: 1px solid #CBCBCB;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;*/
    }



    .CheckBoxCostumizedNS {
        display: none;
    }

        .CheckBoxCostumizedNS + label span {
            display: inline-block;
            width: 31px;
            height: 29px;
            margin: -7px 5px 0 0;
            vertical-align: middle;
            background: url(../images/Decoration/Ns_CheckBox.png) left top no-repeat;
            cursor: pointer;
        }

        .CheckBoxCostumizedNS:checked + label span {
            background: url(../images/Decoration/Ns_CheckBox.png) left bottom no-repeat;
        }


        .CheckBoxCostumizedNS + label {
            font-family: 'Helvetica',Arial;
            font-size: 22px;
            color: #DA3446 !important;
            font-weight: normal;
        }

    .RadioCostumizedNS {
        display: none;
    }

        .RadioCostumizedNS + label span {
            display: inline-block;
            width: 13px;
            height: 13px;
            margin: -3px 3px 0 0;
            vertical-align: middle;
            background: url(../images/Decoration/RadioStyle.png) left top no-repeat;
            cursor: pointer;
        }

        .RadioCostumizedNS:checked + label span {
            background: url(../images/Decoration/RadioStyle.png) left bottom no-repeat;
        }


        .RadioCostumizedNS + label {
            font-size: 16px;
            color: #465257 !important;
            font-weight: normal;
        }
