/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */
.add_new_zipcode{
    display: flex;
    justify-content: center;
}
.form_container{
    text-align: center !important;
}
#zipcode_field{
    width: 45%;
}
#zipcode_button{
    width: 15%;
    margin: 7px;
}
#svg_form_time {
    height: 15px;
    max-width: 80%;
    margin: 40px auto 20px;
    display: block;
}

#svg_form_time circle,
#svg_form_time rect {
    fill: white;
}
.form_container .button, #zipcode_button {
    background: #16c3dc;
    border-radius: 5px;
    padding: 7px 20px;
    display: inline-block;
    font-weight: bold;
    color: white;
    cursor: pointer;
    box-shadow: 2px 3px 22px 1px rgba(22, 195, 220, 0.5);
    border: 1px solid #16c3dc;
}
.form_container .button:hover, #zipcode_button:hover{
    background-color: #fff;
    color: #16c3dc;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    -webkit-box-shadow: 2px 3px 22px 1px rgba(204, 204, 204, 0.5);
    -moz-box-shadow: 2px 3px 22px 1px rgba(204, 204, 204, 0.5);
    box-shadow: 2px 3px 22px 1px rgba(204, 204, 204, 0.5);
    border: 1px solid #fff;
}
.form_container .disabled {
    display:none;
}

.form_container section {
    padding: 10px ;
    max-width: 300px;
    margin: 30px auto;
    background:white;
    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(10px);
    box-shadow:0px 2px 10px rgba(0,0,0,0.3);
    border-radius:5px;
    transition:transform 0.2s ease-in-out;
}
.form_container input, .form_container select {
    width: 100%;
    margin: 7px 0px;
    display: inline-block;
    padding: 4px 20px !important;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid lightgrey;
    font-size: 1em;
    font-family:inherit;
    background:white;
}
.form_container p{
    text-align:justify;
    margin-top:0;
}
.zbcp_loader {
    border: 6px solid #f3f3f3;
    border-radius: 50%;
    border-top: 6px solid #16c3dc;
    width: 20px;
    height: 20px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    margin-top: 10px;
    display: none;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* The Modal (background) */
.zbcp_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 */
}

/* Modal Content */
.zbcp_modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 600px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
.zbcp_close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.zbcp_close:hover,
.zbcp_close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.zbcp_modal-header {
    padding: 10px 16px;
    background-color: #16c3dc;
    color: white;
    text-align:center;
}

.zbcp_modal-body {
    padding: 20px;
    max-height: 400px;
    overflow-y: scroll;
}
@media only screen and (max-width: 600px) {
    .zbcp_modal-content {
        width: 90%;
        margin: auto;
    }
}

/*Tassawer Added */
.export_users_into_csv .button-primary {
	margin-bottom: 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    display: flex !important;
    flex-direction: row !important;
}
#TB_window .select2-selection.select2-selection--multiple {
	max-height: 130px;
    overflow-y: scroll;
}
.success-msg-zipcode {
    position: absolute;
    bottom: 6px;
    font-size: 14px;
    background-color: #ccc;
    padding: 3px 20px;
    color: #000;
    border-left: 5px solid green;
    left: 30%;
}
.display-success-msg {
    display: none;
}
.tb-close-icon
{
    border: none i !important;
}

#TB_closeWindowButton:focus .tb-close-icon
{
    box-shadow: none !important;
}