.swal2-container {
    zoom: 1.5;
}

.brand {
    left: -4px !important;
    top: -2px !important;
}

@keyframes click-wave {
    0% {
        height: 40px;
        width: 40px;
        opacity: 0.15;
        position: relative
    }

    100% {
        height: 200px;
        width: 200px;
        margin-left: -80px;
        margin-top: -80px;
        opacity: 0
    }
}

input[type="radio"]:focus {
    outline: none;
}

.option-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    top: 5px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 25px;
    width: 25px;
    transition: all 0.15s ease-out 0s;
    background: #cbd1d8;
    border: 0px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 10px !important;
    outline: none;
    z-index: 1000;
    border-radius: 50%;
}

.option-input:hover {
    background: #9faab7
}

.option-input:checked {
    background: #E62A22
}

.option-input:checked::before {
    height: 20px;
    width: 20px;
    left: 2px;
    top: 2px;
    position: absolute;
    content: "done";
    font-family: "Material Icons";
    display: inline-block;
    font-size: 18px;
    text-align: center;
    line-height: 20px
}

.option-input:checked::after {
    outline: none;
    background: #E62A22;
    content: '';
    display: block;
    position: relative;
    z-index: 100
}

.option-input.radio {
    border-radius: 50%
}

.option-input.radio::after {
    border-radius: 50%
}