﻿
.FormHolder{
    display:flex;
    flex-direction:column;
    align-items:center;
    flex-grow:1;
}

.Form {
    display: flex;
    flex-direction: row;
    width:100%;
    max-width:1100px;
    flex-grow:1;
}
.FormSection{
    display:flex; flex-direction:column;
    flex-grow:1;
    transition:1s all;
    max-width:100%;
    align-items:center;
    opacity:1;
}
.header {
    background-color: #254a69;
}
.FormHolder h2 {
    color: #254a69;
}
.FormSection.Collapsed {
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    max-height:0;
}
.ButtonHolder {
    display: flex;
    width: 100%;
    max-width: 400px;
    gap: 10px;
    position: sticky;
    bottom: 0;
    background-color: #254a69;
    padding: 20px;
    border-radius: 5px 5px 0 0;
}

.ButtonStyle {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s all;
    background-color: #fff;
    color: #333;
    margin: unset;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 15px 10px;
    position: relative;
    height: unset;
    margin-top: 5px;
    font-size:1.5em;
    margin-bottom: 5px;
    cursor:pointer!important;
    text-decoration:none;
    /*   margin-left: 25px;*/
}
    .ButtonStyle.Hidden{
        display: none;
    }
    .ButtonStyle:hover {
        background-color: #777;
        color: #fff;
        border: 1px solid #777;
        text-shadow: none;
    }



 .FormRow {
    padding: 10px;
    flex-basis: auto;
    opacity: 1;
    width:100%;
    max-width:80%;
    min-width:320px;
    transition:.5s all;
    height:auto;
}

    .FormRow.Collapsed {
        height: 0 !important;
        opacity: 0 !important;
        margin: 0 !important;
        padding: 0;
    }
    .AddressHolder {
        max-width: 100%;
        max-height: 700px;
        align-items: center;
        display: flex;
        flex-direction: column;
        transition: .5s all;
    }

.AddressHolder.Collapsed{max-height:0px;opacity:0;}
.FormRow .FlexHolder {
    display: flex;
    justify-content: center;
    position: relative;
}


    .FormRow label {
        font-size: .8em;
        width: 150px;
        text-align: center;
        display: flex;
        border-radius: 5px;
        background-color: #254a69;
        color: #fff;
        justify-content: center;
        align-items: center;
        margin: 2.5px;
        margin-right: -7.5px;
        padding-right: 5px;
        min-width:150px;
    }
.FormRow .errHolder {
    font-size: .8em;
    width: 40px;
    min-width: 40px;
    text-align: center;
    display: flex;
    border-radius: 0 5px 5px 0;
    background-color: #ccc;
    color: #333;
    justify-content: center;
    align-items: center;
    margin: 2.5px;
    margin-left: -7.5px;
}

    .FormRow .FlexHolder input, .FormRow .k-autocomplete, .FormRow input, .FormRow .k-datepicker .k-picker-wrap, .FormRow .k-combobox, .FormRow select {
        font-size: 1.3em;
        flex-grow: 1;
        text-align: center;
        /*margin-top: 10px;
                margin-bottom: 10px;*/
        position: relative;
        margin: 2.5px;
        border-radius: 0;
        overflow: hidden;
        outline: none !important;
        border: 1px solid #ccc;
        line-height: 1.2em;
        width: 100%;
        padding: 0.6em;
    }

 .FormRow .k-datepicker {
    flex-grow: 1;
}

 .FormRow .k-combobox .k-dropdown-wrap {
    border-radius: 10px;
    overflow: hidden;
}
    .ForgotPassword{
        color:#fff;
    }

    .FormRow .k-autocomplete input, .FormRow .k-combobox .k-dropdown-wrap input {
        border: none;
    }

 .FormRow .k-datepicker input {
    border: none;
}

 .FormRow .k-combobox {
    background-color: transparent;
}


     .FormRow .k-combobox .k-select,  .FormRow .k-datepicker .k-select {
        line-height: 3.2em;
    }
.RadioListButton {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-grow: 1;
    justify-content: center;
    padding: 10px;
    background-color: #fff;
   border: 1px solid #ccc;
    margin: 2.5px;
}

    .RadioListButton label {
        cursor: pointer;
        min-height:50px;
        display:flex;
        margin-right:0;
        margin:0;
        padding-right:0;
        justify-content:unset;
        align-items:unset;
    }

        .RadioListButton label span {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px 15px;
            border-radius: 5px;
            margin: 1px;
            background-color: #fff;
            color: #254a69;
            transition: 0.3s;
            flex-grow: 1;
        }

    .RadioListButton input[type="radio"] {
        display: none;
    }

        .RadioListButton input[type="radio"]:checked + span {
           
            background-color: #254a69;
            color: #fff;
        }

    .RadioListButton label:hover span {
        background-color: #777;
        color: #fff;
    }


.RadioListIcon {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-grow: 1;
    justify-content: center;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    margin: 2.5px;
}

    .RadioListIcon label {
        cursor: pointer;
        min-height: 50px;
        display: flex;
        margin-right: 0;
        margin: 0;
        padding-right: 0;
        justify-content: unset;
        align-items: unset;
    }

        .RadioListIcon label span {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px 15px;
            border-radius: 5px;
            margin: 1px;
            background-color: #fff;
            color: #254a69;
            transition: 0.3s;
            flex-grow: 1;
        }
            .RadioListIcon label i {
                margin:5px;
            }
            .RadioListIcon input[type="radio"] {
                display: none;
            }

        .RadioListIcon input[type="radio"]:checked + span {
            background-color: #254a69;
            color: #fff;
        }

    .RadioListIcon label:hover span {
        background-color: #777;
        color: #fff;
    }
