/*
 Theme Name:  Divi Child Theme
 Theme URI:    https://divilife.com
 Description:  Child Theme for Divi
 Author:       Tim Strifler
 Author URI:   https://divilife.com
 Template:     Divi
 Version:      1.0.0
*/

/*****Add any custom CSS below this line*****/
select#selectUnit2 + span.select2-container {
    width: 100% !important;
}

select#selectUnit2 + span.select2 span.select2-selection {    
    padding: 15px;
    height: auto;
    font-size: 17px;
    text-align: left;
    border: 1px solid black;
    text-transform: uppercase;
}

select#selectUnit2:disabled + span.select2 span.select2-selection {
    background-color: transparent;
    border: 1px solid grey;
}

select#selectUnit2:disabled + span.select2 span.select2-selection__rendered {
    color: grey;
}

select#selectUnit2 + span.select2 span.select2-selection__arrow {
    position: absolute;
    top: 50%;
    left: 99%;
    transform: translate(-50%, -50%);
}

select option:hover,
.select2-container--default.select2-container--open ul.select2-results__options li.select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #0b6bb7;
}

.yellow-btn {
    background-color: #f7b02a;
    transition: 0.3s;
    margin-top: 15px;
    border: 0;
    color: #ffffff;
    padding: 16px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 5px;
    width: 100%;
    font-size: 18px;
    display: block;
    border-bottom-color: #d6a345;
    border-bottom-style: solid;
    border-bottom-width: 2px;
}

.yellow-btn:hover {
    background-color: #f7ba48;
}

form.form-hidden {
 display: none;
}

form.form-shown {
 display: block;
}

input[type="submit"]:disabled {
    background-color: #f7d492;
    transition: 0.3s;
    cursor: auto;
}

.text-bold {
    font-weight: bold;
}

.text-italic {
    font-style: italic;
}

.text-align-left {
    text-align: left;
}

.full-width-text-area {
    width: 100%;
}

.non-float-center {
    float: none !important;
    margin: 0 auto;
}