body{
    background-color: var(--background-color);
}

header{
    box-shadow: var(--default-shadow) !important;
    z-index: 1000;
}

header .options{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;

    text-align: right;
}

.subheader{
    height: 32px;
    width: 100%;

    background-color: #ffffff;
    color: var(--content-color);
    box-sizing: border-box;
}
.subheader .line{
    height: 32px;

    padding-left: 8px;
    padding-right: 8px;

    border-top: 1px solid var(--field-border-color);
    border-bottom: 1px solid var(--field-border-color);

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.subheader .line .item{
    width: 33.3vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    cursor:pointer !important;
}
.subheader .line .item p{
    white-space: nowrap;
    font-size: 1rem;

    margin: 0;
}
.subheader .line i{
    margin-right: 2px;
    font-size: 1.1rem;
}

#sortby{
    border: none;
    outline: none;

    width: 100%;

    color: var(--content-color);

    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
}
#menu-button{
    justify-content: flex-end;
}
#menu-button p{
    margin-right: 4px;
}

.tabhost{
    width: 100%;
    height: 56px;
    max-height: 56px;

    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: stretch;

    background-color: white;
    color: black;
    border-top: 1px solid rgb(190,190,190);

    position: fixed;
    left: 0;
    bottom: 0;
}


.tabitem{
    width: 50%;
    margin: 0;
    cursor: pointer;
    text-align: center;
    opacity: 0.6;
}
.tabitem p{
    line-height: 20px;
    margin: 0;
    padding: 0;
    font-size: 0.8rem;
}
.tabitem i{
    line-height: 36px;
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
}
.tabitem.active{
    opacity: 1;
}
.tabitem.active i{
    color: var(--content-color);
}
.tab{
    margin: 0;
    padding: 0;
    display: none;

    padding: 12px;
    padding-top: 4px;
    padding-bottom: 68px;
    box-sizing: border-box;
}
.tab.active{
    display: block;
}

#categories-container{
    list-style-type: none;
    padding: 0;
    margin: 0;
}
#categories-container .category{
    margin-top: 4px;
    margin-bottom: 4px;
}
#categories-container .panel{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    padding-top: 8px;
    padding-bottom: 8px;

    cursor: pointer;
}


.no-data-text{
    width: 100%;
    text-align: center;
    margin-top: 40px;
}

.panel{
    width: 720px;
    margin: auto;
    padding: 12px;
    box-sizing: border-box;

    overflow: visible;

    background-color: #ffffff;
    box-shadow: var(--default-shadow);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;

    margin-top: 12px;
}
@media only screen and (max-width: 800px) {
    .panel{
        width: 100%;
    }
}

.provider{
    position: relative;

    flex-direction: row;
    justify-content: stretch;
    align-items: stretch;

    text-decoration: none;
}
.provider .image{
    width: 120px;

    min-width: 120px;
    min-height: 120px;

    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiIgd2lkdGg9IjMyIiBoZWlnaHQ9IjMyIiBmaWxsPSJ3aGl0ZSI+CiAgPHBhdGggZD0iTTAgNCBMMCAyOCBMMzIgMjggTDMyIDQgeiBNNCAyNCBMMTAgMTAgTDE1IDE4IEwxOCAxNCBMMjQgMjR6IE0yNSA3IEE0IDQgMCAwIDEgMjUgMTUgQTQgNCAwIDAgMSAyNSA3Ij48L3BhdGg+Cjwvc3ZnPg==") no-repeat center hsl(0, 0%, 80%);
    
    background-size:     contain;                      /* <------ */
    background-repeat:   no-repeat;
    background-position: center center;
}
.provider .textcontent{
    margin-left: 16px;
}
.provider .textcontent p{
    margin: 0;
    text-decoration: none;
    color: black;
}
.provider .textcontent .name{
    font-size: 1.4rem;
}
.provider .textcontent .item{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    margin-top: 8px;
}
.provider .textcontent .item p{
    font-size: 1rem;
    margin-left: 4px;
}
.provider .textcontent .item i{
    font-size: 0.9rem;
    color: var(--content-color);
}
.provider .concentric-circles{
    position: absolute;
    right: 24px;
    top: 20px;
}

@keyframes circle {
    from {
      transform: scale(0);
      opacity: 1;
    }
    to {
      transform: scale(8);
      opacity: 0;
    }
  }
  
.provider .concentric-circles .circle {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    top: 40%;
    left: 47%;
    /*box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);*/
}

.provider .concentric-circles .circle.one {
    animation: circle 6s 4s infinite linear;
    background: #95C11F;
}

.provider .concentric-circles .circle.two {
    animation: circle 6s 2s infinite linear;
    background: #95C11F;
}

.provider .concentric-circles .circle.three {
    animation: circle 6s 0s infinite linear;
    background: #95C11F;
}




#positiondialog-background{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    background-color: rgba(0,0,0,0.5)
}

#positiondialog{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    width: 720px;

    z-index: 1000;
}

@media only screen and (max-width: 731px) {
    #positiondialog{
        width: 90%;
    }
}

#positiondialog .titlesection{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    height: 56px;
    margin-bottom: 22px;
}

#positiondialog .titlesection .title{
    font-size: 1.4rem;
    font-weight: bold;

    width: 100%;
    text-align: center;
}

#positiondialog .inputcontainer{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;

    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
    margin-bottom: 16px;
}

#positiondialog .inputcontainer .field-title{
    font-size: 1.2em;
    padding:0;
    margin: 0;
    margin-top: 24px;
}

#positiondialog .inputcontainer .title-and-input{
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: center;

    margin-top: 12px;
}
#positiondialog .inputcontainer .title-and-input .title{
    width: 20%;
    margin: 0;
}
#positiondialog .inputcontainer .title-and-input .radcontainer{
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: center;
}

#positiondialog .inputcontainer .title-and-input .textinput{
    font-size: 1rem;
    padding: 4px;

    outline: none;
    border: 0;
    text-align: left;

    border: 1px solid var(--field-border-color);

    width: 100%;
}
#positiondialog .inputcontainer  #radiusvalue{
    margin: 0;
    white-space: nowrap;
    margin-right: 16px;
    margin-left: 12px;
}

#positiondialog .inputcontainer .countryselect{
    border: 1px solid var(--field-border-color);

    font-size: 1rem;
    padding: 4px;
}

#positiondialog .inputcontainer .slider{
    margin-top: 0px;
    margin-bottom: 0px;
}

#positiondialog .inputcontainer .button{
    border: 0;
    background-color: var(--content-color);
    color: var(--primary-color);

    font-size: 1em;

    padding: 8px;

    cursor: pointer;
    transition: all .2s ease-in-out;

    margin-bottom: 12px;
}
#positiondialog .inputcontainer .button.done{
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 12px;
}
#positiondialog .inputcontainer .button.done:hover{
    background-color: var(--primary-color-dark);
}
#positiondialog .inputcontainer .button.close{
    font-weight: normal;
    background-color: #ffffff;
    color: #000000;
}

.slider {
    -webkit-appearance: none;  /* Override default CSS styles */
    appearance: none;
    width: 100%; /* Full-width */
    height: 4px; /* Specified height */
    background: #d3d3d3; /* Grey background */
    outline: none; /* Remove outline */
    opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;
  }
  
/* Mouse-over effects */
.slider:hover {
    opacity: 1; /* Fully shown on mouse-over */
}
  
  /* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 20px; /* Set a specific slider handle width */
    height: 20px; /* Slider handle height */
    border-radius: 10px;
    background: var(--content-color); /* Green background */
    cursor: pointer; /* Cursor on hover */
}
  
.slider::-moz-range-thumb {
    width: 20px; /* Set a specific slider handle width */
    height: 20px; /* Slider handle height */
    border-radius: 10px;
    background: var(--content-color); /* Green background */
    cursor: pointer; /* Cursor on hover */
}

.slider::-ms-thumb {
    width: 20px; /* Set a specific slider handle width */
    height: 20px; /* Slider handle height */
    border-radius: 10px;
    background-color: var(--content-color); /* Green background */
    cursor: pointer; /* Cursor on hover */

    z-index: 1000;
}

@supports (-ms-ime-align: auto) {
    .slider{
        height: 20px;
        background-color: white;
    }
    .slider::-ms-fill-lower {
        background-color: #d3d3d3;
        height: 4px;
    }
    .slider::-ms-fill-upper {
        background-color: #d3d3d3;
        height: 4px;
    }
}

#searchcity{
    background-color: var(--primary-color) !important;
    color: var(--content-color) !important;

    border: 2px solid var(--content-color) !important;

    font-weight: bold;

    margin-top: 16px;
    margin-bottom: 26px !important;

    padding: 8px;
    text-align: center;
}



#menu-background{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    background-color: rgba(0,0,0,0.5);

    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;

    display: none;
}
#menu{
    width: 400px;
    height: 100%;

    background-color: white;
    box-shadow: var(--default-shadow);
}

@media only screen and (max-width: 400px) {
    #menu{
        width: 100%;
    }
}

#menu .menu-header{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    height: 56px;

    padding: 0;
    padding-left: 16px;
    padding-right: 16px;

    border-bottom: 1px solid var(--field-border-color);
}

#menu .menu-header i{
    font-size: 1.8rem;

    cursor: pointer;
}
#menu .menu-header .title{
    margin: 0;
    margin-left: 20px;
    font-size: 1.4rem;
    font-weight: bold;
}

#menu .items{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

#menu .items .item{
    height: 56px;
    width: 100%;

    font-size: 1.2rem;
    line-height: 56px;

    padding-left: 22px;
    box-sizing: border-box;

    transition: all ease-in-out .2s;
}

#menu .items .item:hover{
    background-color: var(--content-color);
    color: white;
}


.statuspanel{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: black;
}
.statuspanel p{
    font-size: 1rem;
    margin: 0;
}
#reload-button{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    color: var(--content-color);
    cursor: pointer;
}
#reload-button .text{
    margin-left: 6px;
}
@media only screen and (max-width: 400px) {
    .statuspanel p{
        font-size: 4vw;
    }
}
@media only screen and (max-width: 350px) {
    #reload-button i{
        font-size: 6vw;
    }
}