﻿
#section-speaker-container button.primary, 
#section-speaker-container button.selected {
    background: linear-gradient(0deg, #0074E2, #0074E2), linear-gradient(0deg, #0074E2, #0074E2);
    color: #FFFFFF;
}

#section-speaker-container button {
    height: 48px;
    padding: 3px 16px 3px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    letter-spacing: 0em;
    border: 2px solid #0074E2;
    width: 225px;
    margin-bottom: 10px;
}

#section-speaker-container #speaker-search-result-data-table .speaker-search-result-data-table-cell {
    width: auto !important;
    max-width: 200px !important;
}

#section-speaker-container #speaker-search-result-data-table tr.dt-hasChild {
    background: #f7f7f7;
}

.section-speaker-loading-wheel {
    margin-right: auto;
    height: 26px;
    border-radius: 50%;
    width: 26px;
}

#section-speaker-container #speaker-search-data-expertises,
#section-speaker-container #speaker-new-registration-data-expertises {
    background: white;
    max-height: 120px;
    overflow-y: auto;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
    border: 1px solid #ced4da;
    padding: 2px 8px;
}

#section-speaker-container #speaker-search-data-expertises-label-count-selected,
#section-speaker-container #speaker-new-registration-data-expertises-label-count-selected {
    color: darkgrey
}

#section-speaker-container .speaker-search-criteria-container .card-header {
    background-color: #003767;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
}

div.hr {
    border-top: 2px solid #E6E7E7;
    height: 10px;
}

.margin-top {
    margin-top: 15px;
}

.speaker-error {
    border: 1px solid red !important;
}

.margin-bottom {
    margin-bottom: 15px;
}
.switch {
    position: relative;
    display: block;
    width: 60px;
    height: 34px;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }