* {
    margin: 0;
    font-family: 'Source Sans Pro', sans-serif;
    z-index: 10000;
}

.condition_a {
    text-decoration: none;
    z-index: 10000;
}

.condition1 {
    background-size: cover;
    padding: 0 10px;
    background-position: center;
    width: 100%;
    z-index: 10000;
}

#darkBack {
    width: 100%;
    height: 100vh;
    background: rgba(76, 56, 75, .15);
    z-index: 10000;
}

#condition {
    position: fixed;
    bottom: 15px;
    left: 15px;
    right: 15px;
    max-width: 380px;
    width: calc(100% - 30px);
    min-width: 280px;

    background: rgba(236, 240, 241, 1);
    border: 5px solid #fff;
    border-radius: 15px;
    box-shadow: 20px -10px 20px 5px rgba(34, 60, 80, 0.7);

    transition: transform 0.5s ease;
    transform: translateX(-120%);
    z-index: 10000;
}

#condition.open {
    transform: translateX(0);
}

#new span {
    background: #fff;
    border-radius: 4px;
    position: absolute;
    color: #69777e;
    padding: 4px 10px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: -5px;
    z-index: 10000;
}

#condition .close_condition {
    color: #464646;
    right: 8px;
    top: 0px;
    position: absolute;
    font-size: 20px;
    cursor: pointer;
    z-index: 10000;
}

#condition h2 {
    font-size: 17px;
    color: #464646;
    line-height: 22px;
    font-weight: 400;
    text-align: center;
    padding: 0 20px;
    z-index: 10000;
}

.inform_condition {
    color: darkgray;
    font-size: 10px
}

.condition_button {
    margin: 0 auto;
    text-align: center;
    right: 0;
    left: 0;
    position: absolute;
    width: 350px;
    font-size: 15px;
    color: #fff;
    border-bottom: 2px solid #3c4246;
    background: #69777e;
    border-radius: 4px;
    padding: 8px 0;
    z-index: 10000;
}

#condition_plus {
    position: fixed;
    bottom: 3%;
    left: 0;
    font-size: 15px;
    cursor: pointer;
    text-align: left;
    letter-spacing: 1px;
    z-index: 10000;
}

#condition_plus span {
    position: absolute;
    margin-top: 38px;
    left: 4px;
    z-index: 10000;
}

#condition_plus::after {
    content: '';
    display: block;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #69777e;
    z-index: 10000;
}

@media all and (max-width: 800px) {
  #condition {
    left: 10px;
    right: 10px;
    width: auto;
    max-width: none;
  }
}
