
.margin-0 {
    margin: 0;
}
.pad-0 {
    padding: 0;
}
.pad__mg-0 {
    margin: 0;
    padding: 0;
}
body {
    min-width: 1000px;
}
ul {
    list-style: none;
}
.color-red {
    color: red;
}
a {
    text-decoration: none;
    color: #333;
}
input {
    outline: none;
    border: 0;
}
.container {
    width: 1300px;
    margin: 0 auto;
}
.icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
}
.page_not_fount {
    font-size: 28px;
    text-align: center;
}
.page_not_fount img{
    width: 170px;
}
h1, h2 {
    margin: 8px 0;
    font-size: 24px;
}
.dialog {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,.4);
    padding-top: 1px;
    box-sizing: border-box;
    z-index: 999;
}

.dialog .window {
    position: relative;
    width: 70vw;
    height: 70vh;
    background-color: #f8f8f8;
    margin: 15vh auto 0;
    padding: 30px 5vw;
    border: 3px solid #bbb;
}
.flex {
    display: flex;
    height: 100%;
}
.direction-column {
    flex-direction: column;
}
.dialog .footer {
    position: absolute;
    bottom: 30px;
    right: 30px;
}
.dialog .close-ico {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}


.contact-icon-wrap {
    position: fixed;
    right: 15px;
    bottom: 15px;
}
.multi-ico-wrap {
    position: relative;
}
.multi-ico {
    position: absolute;
    bottom: 105%;
    left: 50%;
    transform: translateX(-50%);
}
.multi-ico a {
    width: 48px;
    margin-bottom: 5px;
}
.contact-icon-wrap .shrink .pop {
    opacity: 0;
    display: none;
}
.open-contact {
    border: 1px solid #d5d5d5;
    border-radius: 50%;
    padding: 10px;
    font-size: 0;
    position: relative;
    z-index: 100;
    background-color: #fff;
}
.multi-ico-wrap .contact-img {
    border-radius: 50%;
    width: 100%;
}



.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9998;
  }
  
  .modal {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .modal-buttons {
    display: flex;
    width: 88%;
    justify-content: space-around;
    margin-top: 20px;
  }
  
  .modal-buttons button {
    margin-left: 10px;
    padding: 8px 22px;
    border: none;
    font-weight: bold;
    width: 40%;
    font-size: 17px;
    background-color: var(--cur-theme-color);
    color: white;
    border-radius: 4px;
    cursor: pointer;
  }
  .modal-buttons button.primary {
    background-color: var(--cur-primary-color);
    color: white;
  }
