﻿.selectBox input {
    display: none;
}

    .selectBox input:checked + label {
        border-color: #00c853;
        z-index: 1;
        box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.1);
    }

        .selectBox input:checked + label:before {
            background: #00c853;
            box-shadow: 0 0 0 1px #00c853;
        }

.selectBox label {
    position: relative;
    padding: 5px 2px 6px 33px;
    cursor: pointer;
    /* font-weight: bold; */
    font-size: 11px;
}

    .selectBox label:before {
        content: "";
        width: 15px;
        height: 15px;
        box-shadow: 0 0 0 1px #ccc;
        border: 3px solid #fff;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .selectBox label:hover {
        border-color: #999;
        z-index: 1;
    }

.selectBox.radio label:before {
    border-radius: 100%;
}

.selectBoxGroup {
    display: flex; 
}

    .selectBoxGroup .selectBox {
        margin-left: -1px;
    }

        .selectBoxGroup .selectBox:first-child {
            margin-left: 0;
        }

@media screen and (max-width: 568px) {
    .selectBoxGroup {
        flex-direction: column;
    }

        .selectBoxGroup .selectBox {
            margin-left: 0;
        }

            .selectBoxGroup .selectBox label {
                width: 100%;
            }
}

.selectBoxGroup.underneath {
    flex-direction: column;
}

    .selectBoxGroup.underneath .selectBox {
        margin-left: 0;
    }

        .selectBoxGroup.underneath .selectBox label {
            width: 100%;
        }

.selectBoxGroup.rtl {
    direction: rtl;
}

    .selectBoxGroup.rtl label {
        width: 100%;
        padding: 15px 40px 15px 15px;
        text-align: right;
    }

        .selectBoxGroup.rtl label:before {
            right: 15px;
        }




* {
    box-sizing: border-box;
}

.openBtn {
    display: flex;
    justify-content: left;
}

.openButton {
    border: none;
    border-radius: 5px;
    background-color: #1c87c9;
    color: white;
    padding: 14px 20px;
    cursor: pointer;
    position: fixed;
}

.loginPopup {
    position: relative;
    text-align: center;
    width: 100%;
}

.formPopup {
    display: none;
    position: fixed;
    left: 45%;
    top: 5%;
    transform: translate(-50%, 5%);
    border: 3px solid #999999;
    z-index: 9;
}

.formContainer {
    max-width: 300px;
    padding: 20px;
    background-color: #fff;
}

    .formContainer input[type=text],
    .formContainer input[type=password] {
        width: 100%;
        padding: 15px;
        margin: 5px 0 20px 0;
        border: none;
        background: #eee;
    }

        .formContainer input[type=text]:focus,
        .formContainer input[type=password]:focus {
            background-color: #ddd;
            outline: none;
        }

    .formContainer .btn {
        padding: 12px 20px;
        border: none;
        background-color: #8ebf42;
        color: #fff;
        cursor: pointer;
        width: 100%;
        margin-bottom: 15px;
        opacity: 0.8;
    }

    .formContainer .cancel {
        background-color: #cc0000;
    }

    .formContainer .btn:hover,
    .openButton:hover {
        opacity: 1;
    }