
/* RECEPTION BASE INFORMATION
---------------------------------------------------------------------------- */

.dv-reception-base-infomation-container{
    /*
    margin-top: 1.6em;
    margin-bottom: 2.5em;
    */
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem 0;
    /*color: #1c1c1c;*/
    color: #000;
    position: relative;
    width: 100%;
    text-align: center;
    background-color: #d6d6d6;
    border: 1px solid #b8b8b8;
}

a.dv-reception-header,
.dv-reception-header{
    text-transform: uppercase;
    font-size: 150%;
    letter-spacing: 0.14em;
    /*color: #5a5a5a;*/
    color: #000;
    text-decoration: none;
    position: relative;  
    transition: font-size 0.2s ease-in-out;
    display: inline-block;
}

a.dv-reception-header::after {
    content: "";
    background-color: transparent;
    height: 2px;
    width: 50%;
    position: absolute;
    bottom: -.2em;
    transition: all .2s ease-in-out;
    left: 25%;
}
/*Hover på länk tillbaka till mottagningens startsida*/
a.dv-reception-header:hover{ color: #000;   }
a.dv-reception-header:hover::after {
    background-color: #000;
    width: 100%;
    left:0;
}

.dv-reception-label{
    text-transform: uppercase;
    font-size: 62%;
    font-weight: 600;
    letter-spacing: 0.2em;
    /*color: #5a5a5a;*/
    color: #000;
    transition: font-size 0.2s ease-in-out;
    margin: 0 !important;
}

a.dv-reception-info,
.dv-reception-info{
    font-size: 120%;
    letter-spacing: 0.1em;
    text-decoration: none;
    position: relative;
    transition: font-size 0.2s ease-in-out;
    margin: 0 !important;
}

a.dv-reception-info::after{
    content: "";
    background-color: transparent;
    height: 2px;
    width: 50%;
    position: absolute;
    bottom: -.2em;
    transition: all .2s ease-in-out;
    left: 25%;
}

a.dv-reception-info:hover::after {
    background-color: #000;
    width: 100%;
    left:0;
}

.dv-reception-info.information{
    /*text-transform: uppercase;*/
    text-transform: none;
    margin: 0 !important;
}

.dv-reception-info.time{
    margin-top: 0;
    margin: 0 !important;
}

.dv-reception-info-lunch {
   color: #EE3124;
   font-size: 0.7em;
   display: block;
   margin: 0 !important;
}
.dv-reception-block{
    width: 100%;
    /*
    margin-bottom: 1em;
    margin-top: .5em;
    */
    margin-bottom: 0.75em;
    margin-top: 0.75em;
    display: flex;
    justify-content: center;
}

.dv-reception-half{
    display: inline-block;
    min-width: 30%;
    padding-right: 1em;
    padding-left: 1em;
}
.dv-reception-button-holder{
    position: absolute;
    /*top: .1em;*/
    top: 0.25em;
    right: 0em;
}

.dv-reception-info-close-button {
    position: absolute;
    right: 1em;
    top: .1em;
    height: 40px;
    width: 40px;
    cursor: pointer;
    background-color: transparent;
    border: none;
}

.dv-reception-info-close-button:focus {
    outline: 0;
}

.dv-reception-info-close-button:focus-visible {
    outline: solid 1px #e82011;
    outline-offset: 1px;
}

.dv-icon-close::before,
.dv-icon-close::after{
    width: 69%;
    height: 10%;
    content: "";
    /*background-color: #858585;*/
    background-color: #000;
    transform-origin: center;
    border-radius: 20%;
    left: 13%;
    top: 48%;
    position: absolute;
    /*transition: all 0.2s ease-in-out;*/
}
.dv-reception-animate-easy,
.dv-reception-animate-easy.dv-icon-close::before,
.dv-reception-animate-easy.dv-icon-close::after{
    transition: all 0.2s ease-in-out;
}


.dv-reception-info-close-button:focus::before,
.dv-reception-info-close-button:focus::after {
    background-color: #000;
    outline: solid 0px transparent;
}

/* Normal = x */
.dv-icon-close::before {
    transform: rotate(-45deg);
}

.dv-icon-close::after {
    transform: rotate(45deg);
}

/* Öppna = + */
.dv-icon-close.closed::before {
    transform: rotate(90deg);
}

.dv-icon-close.closed::after {
    transform: rotate(0deg);
}


/* Minimerad
---------------------------------------------------------------------------- */

.dv-display-mini.dv-reception-base-infomation-container {
    /*color: #858585;*/
    color: #000;
    padding: 0.75rem 0;
    /*
    margin-top: .3em;
    margin-bottom: .5em;
    */
    /*transition: all 0.2s ease-in-out;*/
}

.dv-display-mini .dv-reception-header {
    font-size: 90%;
    display: inline;
}

.dv-display-mini .dv-reception-half.time,
.dv-display-mini .dv-reception-info.information {
    display: none;
}

.dv-display-mini .dv-reception-block {
    display: inline;
}

.dv-display-mini .dv-reception-info.phone {
    display: inline;
    font-size: 90%;
    white-space: nowrap;
}

.dv-display-mini .dv-reception-label {
    display: inline;
    /*color: inherit;*/
}

.dv-display-mini .dv-reception-button-holder {
    /*position: relative;*/
    /*top: -1.5em;*/
    top: 0.25em;
}

/*Surfplatta*/
@media screen and (max-width: 900px) {
    a.dv-reception-header,
    .dv-reception-header {
        font-size: 130%;
    }

    .dv-display-mini .dv-reception-header {
        font-size: 80%;
    }

    a.dv-reception-info,
    .dv-reception-info {
        font-size: 110%;
    }

    .dv-reception-label {
        font-size: 56%;
    }

    .dv-reception-button-holder {
        right: -.5em;
    }

    .dv-icon-close::before,
    .dv-icon-close::after {
        width: 60%;
    }
}

/*Bred mobil*/
@media screen and (max-width: 600px) {
    a.dv-reception-header,
    .dv-reception-header {
        font-size: 90%;
    }

    .dv-display-mini .dv-reception-header {
        font-size: 70%;
        display: inline-block;
    }

    a.dv-reception-info,
    .dv-reception-info {
        font-size: 90%;
    }

    .dv-reception-label {
        font-size: 50%;
    }

    .dv-reception-half {
        display: block;
    }

    .dv-icon-close::before,
    .dv-icon-close::after {
        width: 50%;
    }

    .dv-reception-block {
        display: block;
    }
}

/*Mobilläget*/
@media screen and (max-width: 480px) {
    .dv-reception-base-infomation-container {
        /*
        margin-top: 1em;
        margin-bottom: 1.4em;
        */
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .dv-display-mini.dv-reception-base-infomation-container {
        margin: 0;
    }

    a.dv-reception-header,
    .dv-reception-header {
        font-size: 58%;
    }

    .dv-display-mini .dv-reception-header {
        font-size: 40%;
    }

    a.dv-reception-info,
    .dv-reception-info {
        font-size: 60%;
    }

    .dv-reception-info.phone,
    a.dv-reception-info.phone,
    .dv-reception-info.time {
        font-size: 110%;
    }

    /*.dv-reception-half.phone .dv-reception-label{display: none;}*/
    .dv-reception-label {
        font-size: 50%;
    }

    .dv-reception-button-holder {
        right: -1em;
    }

    .dv-icon-close::before,
    .dv-icon-close::after {
        width: 40%;
    }
}