.label {
    font-size: 17px;
    color: black;
    display: block;
    padding-bottom: 0;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    align-items: flex-start;
    display: inline-block;
    margin-right: 300px;
    position: relative;
}

.button {
    background-color: maroon;
    border: none;
    color: #ffffff;
    padding: 15px 27px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    font-family: 'Poppins';
    width: 200px;
    height: 50px;
    border-radius: 10px;
}

.greyed_out_button {
    background-color: white;
    border: 2px solid grey;
    color: grey;
    padding: 15px 27px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: default;
    font-family: 'Poppins';
    width: 200px;
    height: 50px;
    border-radius: 10px;
}

.cancel_btn {
    margin-top: 20px;
    background-color: white;
    color: maroon;
    border: 2px solid maroon;
    padding: 15px 27px;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    width: 200px;
    height: 50px;
    border-radius: 10px;
    display: inline-block;
}

.form-span {
    display: inline-block;
    width: 360px;
}

.input {
    padding: 4px;
    margin-bottom: 1px;
    font-size: 15px;
    width: 260px;
    height: 40px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    white-space: nowrap;
    box-sizing: border-box;
    border-radius: 5px;
}

.product_list_container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.product_list_container radio_input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

.product_list_container:hover radio_input~.checkmark {
    background-color: #ccc;
}

.product_list_container radio_input:checked~.checkmark {
    background-color: #2196F3;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.product_list_container .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.input focus {
    border: 3px solid #84C7F9;
}

input.pw {
    padding: 4px;
    margin-bottom: 1px;
    font-size: 15px;
    width: 260px;
    height: 40px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    white-space: nowrap;
    display: inline-block;
}

.input-with-icon {
    position: relative;
    width: 270px;
    height: 40px;
    box-sizing: border-box;
    padding: 4px;
    margin-bottom: 60px;
    font-size: 15px;
    white-space: nowrap;
    display: inline-block;
}

.input-with-icon .form-control {
    height: 100%;
    width: 100%;
    padding-right: 3.65rem;
    box-sizing: border-box;
}

.input-with-icon .icon {
    position: absolute;
    right: 0.3rem;
    top: 0.3rem;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.search-input-with-icon {
    position: relative;
    width: 260px;
    height: 40px;
    box-sizing: border-box;
    padding: 4px;
    margin-bottom: 20px;
    font-size: 15px;
    white-space: nowrap;
    display: inline-block;
}

.search-input-with-icon .search-form-control {
    height: 100%;
    width: 100%;
    padding-right: 3.65rem;
    box-sizing: border-box;
}

.search-input-with-icon .search-icon {
    position: absolute;
    right: 0.3rem;
    top: 0.3rem;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.field-icon {
    float: right;
    margin-left: -10px;
    margin-top: -10px;
    position: relative;
}

.container {
    padding-top: 30px;
    margin: auto;
}

.fa {
    color: #000000;
    font-size: 20px;
    display: block;
    margin-bottom: -65px;
    margin-right: -15px;
}

.input-container {
    display: -ms-flexbox;
    /* IE10 */
    display: flex;
    width: 100%;
    margin-bottom: 15px;
    position: relative;
    border: 2px solid black;
}

div.container {
    border-radius: 5px;
    background-color: #ffffff;
    padding: 20px;
}

.div-form {
    height: auto;
    width: 260px;
    display: inline-block;
    margin: 10px;
}

.new_user_register {
    font-size: 12px;
    font-weight: bold;
    line-height: 18px;
    color: maroon;
    margin-top: -50px;
}

.forgot_password {
    font-size: 12px;
    font-weight: bold;
    line-height: 18px;
    color: black;
    margin-top: -20px;
    display: block;
}

.logout_modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
    text-align: center;
}

.logout-modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 2px solid #888;
    width: 50%;
    display: inline-block;
}


/* The Close Button */

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}


.cancel_logout_modal {
    width: 130px;
    height: 50px;
    margin: 10px;
    background-color: white;
    color: maroon;
    border: 2px solid maroon;
    font-family: 'Poppins';
    border-radius: 10px;
}

.confirm_logout_modal {
    width: 130px;
    height: 50px;
    margin: 10px;
    background-color: maroon;
    border: none;
    color: #ffffff;
    font-family: 'Poppins';
    border-radius: 10px;
}

.heading_text {
    color: black;
    text-align: center;
    margin: 10px 0px 10px 0px;
    font-family: 'Poppins';
}

.address-dropdown {
    width: 40%;
    position: relative;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
}

.address-dropdown-select {
    box-sizing: border-box;
    border: 0.5pt solid black;
    height: 50px;
    border-radius: 8px;
    padding: 5px;
}


/* .address-dropdown-content {
} */

a:hover {
    color: maroon;
}

.new-addr-modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 3px solid #800000;
    width: 50%;
    display: inline-block;
}

.addr-form-container {
    background-color: transparent;
    border: 1px solid #000000;
    color: #333;
    font-size: 14px;
    height: 70%;
    margin-bottom: 2px;
    padding: 10px;
}

.pagination {
    display: inline-block;
}

.pagination .endDisplay {
    float: right;
    text-align: center;
}

.pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
}

.pagination a.active {
    background-color: #800000;
    color: white;
}

.pagination a:hover:not(.active) {
    background-color: #ddd;
}

.list_style_font{
    font-size: 17px;
}