/* Buttons */
.ButtonV3{
    padding: 11px 25px 12px 25px;
    text-align: center;
    border: none;
    transition: background-color 0.5s ease;
    font-size: 14px;
}

.ButtonV3:active, .ButtonV3:focus{
    outline: none;
}

.ButtonV3--Rounded{
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
}

.ButtonV3--Red{
    background: #E50B1D;
    color: #FFF;
    border:1px solid #E50B1D;
}

.ButtonV3--Red:hover{
    background: #9E0713;
}

.ButtonV3--White{
    background: #FFF;
    border:1px solid #181A1D;
    color:#181A1D;
}

.ButtonV3--White:hover{
    background-color: #181A1D;
    color: #FFF;
}

.ButtonV3--Gray {
    background: #F4F4F4;
    color: #161616;
    border:none;
}

.ButtonV3--DarkGray{
    background-color: #E9E9ED;
    color: #161616;
    border:none;
}

.ButtonV3--DarkGray:hover{
    background-color: #F4F4F4;
}

.ButtonV3--Black{
    background: #181A1D;
    color: #FFFFFF;
    border:1px solid #181A1D;
}

.ButtonV3--Black:hover {
    background-color: #33373E;
    color: #FFF;
}

.ButtonV3--Block{
    width: 100%;
}

.ButtonV3--Min90{
    min-width: 90px;
}

.ButtonV3--w150{
    width: 150px;
}

.ButtonV3--w200{
    width: 200px;
}

.ButtonV3--w300{
    width: 300px;
}

.ButtonV3--Small{
    padding: 7px 13px;
    border-width: 1.5px;
}

.ButtonV3--Medium{
    padding: 17px;
    border-width: 1.5px;
}

.ButtonV3--Custom1{
    padding-top: 6px;
    padding-bottom: 7px;
}

.ButtonV3--Disabled{
    cursor: not-allowed !important;
    opacity: 0.5;
}

.ButtonV3__Container--Center{
    width: 100%;
    text-align: center;
}

/* TextBox */
.TextboxV3{
    border: 1px solid #D9D9D9;
    padding: 12px 8px;
}

.TextboxV3--Fullwidth{
    width: 100%;
}

.TextboxV3--small{
    padding: 9px 8px;
}

.TextboxV3:focus{
    border-color: #181A1D;
    outline: none;
}

/* SelectBox */
.SelectboxV3{
    border: 1px solid #D9D9D9;
    padding: 12px 8px;
    background: #FFF;
}

.SelectboxV3--Fullwidth{
    width: 100%;
}

.SelectboxV3--w200{
    width: 200px;
}

.SelectboxV3 + .select2-container--default .select2-selection--single{
    border:1px solid #D9D9D9;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding: 9px 0;
}

.SelectboxV3 + .select2-container .select2-selection--single{
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:20px;
}

.SelectboxV3 + .select2-container .select2-selection--single .select2-selection__rendered{
    color: inherit;
}

.SelectboxV3 + .select2-container--default .select2-selection--single .select2-selection__arrow{
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
}

.SelectboxV3 + .select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top:0;
    position: static;
    display: inline-block;
    background: url('../images/V3/Arrow-down.svg') no-repeat center;
    background-size:16px;
    width: 16px;
    height: 16px;
    content: "";
    transition-duration: 0.5s;
    border:none;
    left:auto;
    margin-left:0;
}

.SelectboxV3 + .select2-container .select2-selection--single .select2-selection__clear{
    margin: 0 5px;
    color:#555;
}

.SelectboxV3 + .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
    transform: rotate(180deg);
    transition-duration: 0.5s;
}

.SelectboxV3 + .select2-container--default .select2-selection--multiple{
    border:1px solid #D9D9D9;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding: 9px 0;
}

.SelectboxV3 + .select2-container--default .select2-selection--multiple .select2-selection__rendered{
    color: inherit;
}

.SelectboxV3 + .select2-container--default.select2-container--focus .select2-selection--multiple{
    border:1px solid #D9D9D9;
}

.SelectboxV3 + .select2-container--default .select2-selection--multiple .select2-selection__choice{
    margin-top: 3px;
}

.SelectboxV3 + .select2-container--default .select2-selection--multiple .select2-selection__clear {
    margin-top: 4px;
}
/* Radio */
.RadioV3{
    /* Hide original inputs */
    visibility: hidden;
    position: absolute;
}

.RadioV3__Label{
    display: flex;
    align-items: center;
    font-weight: normal;
    margin-bottom: 0;
    cursor: pointer;
}

.RadioV3__Label:before{
    height:16px;
    width:16px;
    min-width: 16px;
    content: " ";
    display:inline-block;
    vertical-align: baseline;
    border:1px solid #000000;
    border-radius:50%;
}

.RadioV3:checked + .RadioV3__Label:before{
    background:url("../images/V3/RedDotLarge.svg") no-repeat center;
    background-size: 8px;
}

/* CheckBox */
.CheckboxV3{
    /* Hide original inputs */
    visibility: hidden;
    position: absolute;
}

.CheckboxV3__Label{
    display: flex;
    align-items: center;
    font-weight: normal;
    margin-bottom: 0;
    cursor: pointer;
}

.CheckboxV3__Label:before{
    height:16px;
    width:16px;
    min-width: 16px;
    content: " ";
    display:inline-block;
    vertical-align: baseline;
    border:1px solid #000000;
}

.CheckboxV3__Label--Gray:before{
    border:1px solid #D9D9D9;
}

.CheckboxV3__Label.CheckboxV3__Rounded:before {
    border-radius:50%;
}

.CheckboxV3:checked + .CheckboxV3__Label:before{
    background:url("../images/V3/RedDotLarge.svg") no-repeat center;
    background-size: 8px;
}

/* Text Area */
.TextAreaV3{
    border: 1px solid #D9D9D9;
    padding: 12px 8px;
}

.TextAreaV3--Fullwidth{
    width: 100%;
}

.TextAreaV3:focus{
    border-color: #181A1D;
    outline: none;
}