@media screen and (max-width:991px) {
  .header-hidden {
     display: none !important;
  }
}

.min-header-wrap {
    z-index: 10;
    position: sticky !important;
    top: 0;
    left: 0;

    display: none;
    flex-direction: column;

    width: 100%;

    transform: translate3d(0,0,0);
	will-change: transform;
	transition: transform .5s,-webkit-transform .5s;
}


@media screen and (max-width:991px) {
  .min-header-wrap {
    display: flex;
  }
}

 .min-header-wrap.transform {
    transform: translate3d(0,-150%,0);
 }

.min-menu-header {
    position: relative !important;
}

.app-modal {
    z-index: 99;
    position: relative; 
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 10px;
    background: white; 

    border-bottom: 1px solid aliceblue;
}

.app-modal.active {
    display: flex
}

.app-modal__close {
    display: flex;
    background: white
}

.app-modal__item {
    display: flex;
    align-items: center;
    gap: 10px
}

.app-modal__icon {
    position: relative;
    width: 50px;
    height: -moz-max-content;
    height: max-content;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .3);

    border-radius: 5px;
}

.app-modal__icon::before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 95%
}

.app-modal__icon img,
.app-modal__icon svg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.app-modal__text {
    display: flex;
    flex-direction: column;

}

.app-modal__text ul {
    
}

.app-modal__text li {
    
}

.app-modal__text li:nth-child(1) {
    font-size: 14px;
    font-weight: 600;
    color: black;
}

.app-modal__text li:nth-child(2) {
    font-size: 12px;
    font-weight: 400;
    color: black;
}

.app-modal__link {
    display: flex;

    max-width: 120px;
    height: -moz-max-content;
    height: max-content;  
    border-radius: 5px;
    
    box-shadow: 0 4px 6px rgba(0, 0, 0, .3); 
}

.app-modal__link img {
       width: 100%;
        height: auto;

        object-fit: contain;
}

.app-modal__link {
    display: flex;

    max-width: 120px;
    height: -moz-max-content;
    height: max-content; 
    border-radius: 5px;
    
    box-shadow: 0 4px 6px rgba(0, 0, 0, .3); 
}

.app-modal__close {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: #e4573d;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .3);

    border: none;
    outline: none;
}

.app-modal__close::after {
    content: "";
    width: 80%;
    height: 80%;
    background-image: url('data:image/svg+xml,             <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="white"><path d="M256-213.85 213.85-256l224-224-224-224L256-746.15l224 224 224-224L746.15-704l-224 224 224 224L704-213.85l-224-224-224 224Z"/></svg>');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    will-change: transform;
    transition: .3s
}

.android-modal {
    display: none;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.android-modal.active {
    display: flex
}

.ios-modal {
    display: none;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.ios-modal.active {
    display: flex
}