/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 11.11.2017, 16:23:53
    Author     : Tatiana
*/

.main_container {
    margin: 20px auto;
}

#mapElement {
    height: 80vh; 
    border: 1px solid black;
}

.link {
    text-transform: inherit;
}

.point_description {
    
}

.point_description .address {
    display:flex; 
    align-items: center;
}

.point_description .address .handle {
    cursor: move;
}

.point_description .address label {
    width:25px;
    margin:0 10px;
}

.point_description .address .remove-icon {
    margin-left: 5px;
    cursor: pointer;
}

.point_description .wait_details {
    height: 20px;
}

.point_description .wait_details input {
    width: 70px; 
    height: 20px; 
    float: right;
    margin-right: 17px;
}

.point_description .wait_details label {
    margin-left: auto;
    float: right;
}

.button_with_margin {
    margin-top: 20px;
}

.uk-subnav-pill>.custom-active>a {
    background-color: #1e87f0 !important;
    color: #fff !important;
}
.uk-subnav-pill>.uk-active>a {
    background-color: inherit;
    color: inherit;
}

.uk-margin .uk-radio {
    margin-right: 5px;
}
.uk-margin .uk-checkbox {
    margin-left: 10px;
}

form .uk-margin label {
    cursor: pointer;
}

.uk-accordion {
    max-height: 65vh;
    overflow-y: scroll;
	padding-right: 10px;
}

.uk-accordion-content .uk-table td {
    padding: 0 10px;
}

.directions {
    padding: 0 10px;
}

/*spinner*/
#loading_layer {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10000;
}
.mnml-spinner {
    border-radius: 100%;
    border-style: solid;
    border-width: 0.25rem;
    height: 5rem;
    width: 5rem;
/*    display: inline-block;*/
    z-index: 3;
    top: 40%;
    left: 48%;
    position: absolute;
    animation: mnmlSpinner 1s infinite linear;
}
.mnml-spinner.dark {
    border-color: rgba(0, 0, 0, 0.2);
    border-top-color: rgba(0, 0, 0, 1);
}
@keyframes mnmlSpinner {
    0%   { transform: rotate(0); }
    100% { transform: rotate(359.9deg); }
}