.form-holder {
    padding: 40px;
    margin: 20px auto;
    width: 90%;
}

.form-holder h4 {
    font-size: 35px;
    text-align: center;
}

.form-holder form {
    margin-top: 15px;
}

.form-tag {
    display: flex;
    padding: 10px;
    width: 100%;
    margin-bottom: 15px;
    align-items: center;
}

.form-tag .number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background: #397191;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.form-tag h5 {
    font-size: 30px;
    color: #0e1a21;
    margin-left: 20px;
}

.input-holder {
    width: 100%;
    margin-bottom: 20px;
}

.input-rowler {
    display: flex;
    justify-content: space-between;
}

.input-holder input, .input-holder textarea, .input-holder select {
    width: 100%;
    height: 45px;
    padding: 10px 25px;
    color: gray;
    border-radius: 5px;
    background: #e8ebed;
    border: 1px solid transparent;
    transition: all 0.5s;    
    outline: none
}

.input-holder input:focus, .input-holder textarea:focus, .input-holder select:focus {
    background: white;
    border-color: #252525;
    
}

.input-holder p {
    display: block !important;
}

.input-holder textarea {
    height: 90px;
}

.input-rowler .input-holder {
    width: 49%
}

.checkboxes p {
    color: gray;
}

.checkbox-options {
    display: flex;
    align-items: center;
}

.checkbox {
    display: flex;
    flex-grow: 1;
    margin: 10px 10px 10px 0 !important;
    background: #e8ebed;
    color: gray;
    font-weight: bold;
    justify-content: center;
    text-align: center;
    align-items: center;
    border-radius: 5px;
    max-width: 120px;
    position: relative;
    height: 45px
}

.checkbox span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox input {
    visibility: hidden;
    opacity: 0;
}

.checkbox:last-child {
    margin-right: 0;
}

.active-checkbox {
    background: #4991b7 !important;
    color: white !important;
}

.action_button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
}

.action_button button {
    border: 0;
    padding: 10px 25px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

.action_button .form-submit {
    background: #397191;
    color: white;
}

.action_button .form-cancel {
    background: #d64040;
    color: white;
    margin-left: 20px;
}

.completetoastfield {
    position: absolute;
    top: 40px;
    right: 5px;
    z-index: 99999;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 20px;
    visibility: hidden; /* Hidden by default. Visible on click */
}

.completetoastfield p {
    color: white;
    margin: 0;
    font-weight: bold;
    font-size: 20px;
}
.show{
    visibility: visible; /* Show the snackbar */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
.success {
    background-color: #57ca69 !important;
    color: white;
}

.error {
    background-color: #f88238 !important;
    color: white;
}


@-webkit-keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 40px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 40px;
        opacity: 1;
    }
}

@keyframes fadeout {
    from {
        top: 40px;
        opacity: 1;
    }
    to {
        top: 0;
        visibility: hidden !important;
        opacity: 0;
    }
}
@media (max-width: 640px) {
    .input-rowler {
        flex-direction: column;
    }

    .input-rowler .input-holder {
        width: 100%;
    }
    .checkbox {
        width: 50% !important;
    }
}