/**
 * General settings page
 */
#adminmenu a[href$="intralog-settings"] img {
    width: 25px;
    opacity: 1;
}

#sbcounter-general-settings-page .settings-block {
    background: white;
    padding: 20px 15px;
    margin-bottom: 20px;
}
#sbcounter-general-settings-page .section-title {
    font-size: 28px;
    font-weight: 600;
    border-bottom: 1px solid lightgray;
    margin-bottom: 10px;
}
#sbcounter-general-settings-page .section-subtitle {
    margin: 0;
    color: #5f5f5f;
}

#save-settings .mw45p {max-width: 45%;}
#save-settings .mw50p {max-width: 50%;}

#save-settings .form-row {
    padding: 0;
}

#save-settings .form-row.fluid {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 5px;
}

#save-settings .card {
    width: 100%;
    min-width: 387px;
    max-width: 45%;
    border-radius: 5px;
    background-color: white;
    box-shadow: 0 0 10px -5px rgba(0,0,0,.5);
    padding: 15px;
    margin: 15px 0 0 0;
}
#save-settings .card .card-title {
    font-size: 22px;
    border-bottom: 1px solid #d2d2d2;
    padding-bottom: 15px;
    margin-top: 0;
}
#save-settings .card--flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#save-settings .form-row .label {
    padding-bottom: 8px;
}

#save-settings .form-row select {
    min-width: 30rem;
    max-width: 45rem;
}

#save-settings label {
    display: block;
    font-weight: bold;
    font-size: .9rem;
}

#save-settings label span.details {
    font-size: .8rem;
    font-weight: normal;
    font-style: italic;
    color: #5d5d5d;
}

.shortcode-alert-container {
    padding-top: 5px;
    font-size: 15px;
    color: #8a2626;
    line-height: 25px;
}
.shortcode-alert-container code {
    font-size: 18px;
}

.intralog-curd-page-description {
    margin-top: 5px;
    margin-bottom: 5px;
    padding-left: 2px;
    color: #676767;
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
}

/* Switch button */
.switch {
    position: relative;
    display: inline-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: #507f33;
}

input:focus + .slider {
    box-shadow: 0 0 1px #507f33;
}

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%;
}

ul.product-list {
    list-style-type: disc;
    padding-left: 30px;
    margin-top: -5px;
}

.details-block {
    padding-left: 25px;
    padding-bottom: 15px;
}