@charset "utf-8";
.googleMapWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 15px;
}

.googleMapWrapper iframe{
	transition: transform cubic-bezier(0.4, 0, 0.2, 1), opacity linear, max-height cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: .8s;
    transform-origin: top center;
    transform: scale(0.5, 0);
    opacity: 0;
    max-height: 0;
    max-width: 100%;
}

.mapAddress {
    text-align: center;
    margin-bottom: 6px;
    color: rgb(235 235 236);
    transition: color .8s;
}

.activeMap .mapAddress {
	color: var(--color-secondaryB);
}

.toggleMap {
    cursor: pointer;
}

.toggleMap:after {
    display: block;
    content: "";
    width: 100%;
    border-bottom: 3px solid;
    opacity: 0.4;
    transition: opacity .6s;
}

.toggleMap:hover:after{
	opacity: 1;
}

.activeMap iframe{
    opacity: 1;
    transform: scale(1, 1);
    max-height: 450px;
}

/****** Окно со временем работы ******/
.modalAttach {
    position: absolute;
    z-index: 100;
    background: var(--color-primaryB);
    color: white;
    padding: 8px;
    opacity: 0.5;
    box-shadow: 10px 5px 10px 5px #000000;
    overflow: hidden;
}

.modalAttach:hover, .modalAttach.activeModal{
    opacity: 1;
}

.modalAttachToggle {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../icons/ticket.svg);
    cursor: pointer;
    transform: scale(1.5);
}

.modalAttachToggle.clockIcon {
    background: url(../icons/clock.svg);
}

.modalAttachContent {
    user-select: none;
    line-height: 1.3;
    font-size: 0;
    transform: translate(32px);
    transition: font-size .5s cubic-bezier(0.93, 0.38, 0.04, 1.38), transform .5s ease;
}

.activeModal .modalAttachContent {
    font-size: inherit;
    transform: translate(0);
}

.activeModal .modalAttachToggle {
    display: none;
}

.modalAttach p:not(:first-child) {
    text-indent: 10px;
}

/****** Адаптив ******/
@media screen and (max-width: 560px){
    .activeMap iframe{
	    max-height: 360px;
	}
}

@media screen and (max-width: 440px){
    .activeMap iframe{
	    max-height: 300px;
	}
}