@import url(./range.css);
@import url(./radio.css);
@import url(./checkbox.css);
@import url(./input_text.css);
@import url(./fonts.css);

* {
    box-sizing: border-box;
}

input,
button,
a {
    font-weight: 500;
    font-family: Helvetica-500, sans-serif;
    outline: none;
}
a:hover {
    text-decoration: none;
}



body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    padding: 30px;
    background-color: #F3F3F3;
    font-size: 14px;
    font-weight: 400;
    font-family: Helvetica-400, sans-serif;
}

h1,h2,h3,h4,h5,h6 {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-family: Helvetica-500, sans-serif;
}

ul,
ol {
    padding: 0;
    margin: 0;
}
li {
    list-style: none;
}

.hidden-text {
    font-size: 0;
}



.full_screen {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 100%;
}
.main {
    display: flex;
    height: 100%;
    
}
.header {
    display: flex;
    /* text-align: center; */
    justify-content: center;
    font-weight: normal;
    margin-bottom: 20px;
}

.header {
    display: flex;
    top: 0;
    background-color: #fff;
    vertical-align: baseline;
    align-items: center;
    padding: 10px 15px 5px;
    width: 100%;    
}
.hamburger {
    display: none;
    flex-shrink: inherit;
    padding: 0;
    margin: 0;
    background-color: #fff;
    border: transparent;
}

/* .logo{
    font-size: 9px;
    line-height: 11px;
    padding: 0;
    margin: 0 0 7px 0;
} */
.form {
    display: flex;
    position: relative;
    flex-direction: column;
    height: 100%;
    width: 394px;
    background-color: #fff;
    padding: 20px 15px;
    border-radius: 20px;
    margin-right: 30px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}


.menu {
    height: 100%;
    overflow: scroll;
}
.menu::-webkit-scrollbar {
    display: none;
}


.menu__item {
    display: flex;
    flex-direction: column;
    width: 364px;
    margin-bottom: 15px;
    border: 2px solid #EBE7E7;
    border-radius: 20px;
    background-color: #fff;
    
}
.menu__label {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.item__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #EBE7E7;
    transition: .3s;
}

.change-menu {
    display: none;
    font-size: 0;
    width: 0;
    height: 0;
    opacity: 0;
}

.accordion {
    width: 100%;
    overflow: hidden;
    height: 0;
    transition: height ease .3s;
}

.item__header img  {
    margin-left: 15px;
    transition: .3s;
}

.openAccordion {
    box-sizing: border-box;
    border: 2px solid #1297E2;
}

.openAccordion .item__header img {
    transform: rotate(180deg);
    transition: transform .3s;
}
.openAccordion .item__header {
    border-bottom-color: #EBE7E7;
}

.openAccordion .item__header img {
    transform: rotate(180deg);
}

.openAccordion .item__header .item__number  {
    background-color: #1297E2;
    color: #fff;
    border: 1px solid #1297E2;
}
.item__header {
    display: flex;
    width: 100%;
    align-items: center;
    vertical-align: baseline;
    justify-content: start;
    padding: 0 15px;
    height: 60px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}
.item__title {
    margin-left: 15px;
    margin-right: auto;
    font-weight: 500;
    font-family: Helvetica-500, sans-serif;
}
.item__list {
    display: flex;
    position: relative;
    width: 324px;
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    /* overflow: hidden; */
    flex-wrap: wrap;    
    margin: 0 auto;
    padding: 20px 0;
    transition: .3s;
}

.item__list h4 {
    margin-bottom: 15px;
}


.item__list::before {
    position: absolute;
    content: '';
    top: -1px;
    width: 100%;
    border-top: 1px solid #EBE7E7;
}

.item__list-column {
    flex-direction: column;
    align-items: baseline;
}

.item__option {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 95px;
    max-width: 94px;
    font-size: 10px;
    cursor: pointer;
}

.item__option-cp {
    cursor: auto;
}

.item__list-jcs .item__option {
    margin-right: 20px;
}

.item__input {
    display: none;
}

.item__option .item__input:checked ~ .item__img {
    /*border: 1px solid #1297E2;*/
  outline: solid 2px #1297E2;
}

.item__option:focus .item__input:disabled {
    /* background: red; */
}

.item__img {
    position: relative;
    display: flex;
    width: 95px;
    height: 75px;
    border-radius: 15px;
    /*border: 1px solid #EBE7E7;*/
    margin-bottom: 5px;
    overflow: hidden;
}
.item__img img{
    width: 100%;
    height: auto;
}

.range__block {
    display: block;
    position: relative;
    text-align: left;
    margin: 0 0 24px;
    width: 100%;
}

.radio__block {
    
}


.content {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}
.content img {
    width: auto;
    max-height: 100%;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: auto;
    margin-bottom: 0;
    padding: 20px 0 0;
    border-top: 1px solid rgba(101, 101, 101, 0.1);
    box-shadow: 0 -15px 30px #fff;
    z-index: 9;
}
.price__box {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 150px;
    font-size: 24px;
    margin-right: 10px;
}

.price {
    display: flex;
    align-items: end;
    font-weight: 500;
    font-family: Helvetica-500, sans-serif;
    margin-right: 10px;
}
.price__box img {
    width: 18px;
}

.btn-submit {
    padding: 18px 45px;
    border-radius: 30px;
    border: transparent;
    color: #fff;
    background-color: #FD5A5A;
    cursor: pointer;
    transition: background-color ease .2s;
}
.btn-submit:hover {
    background-color: #e44a4a;
}

.specification {
    display: flex;
    align-items: center;
    margin: 18px auto 0;
    color: #000;
    font-family: Helvetica-500, sans-serif;
}

.specification img {
    margin-right: 10px;
}

.logo_m {
    /* display: flex; */
    position: absolute;
    align-items: center;
    z-index: 6;
    padding: 30px 30px 5px;
    width: 100%;
    justify-content: space-between;
    zoom: 0.8;
    border-radius: 20px 20px 0 0;
    background-color: #fff;
}

.hamburger_m {
    display: flex;
}

.footer_m {
    display: flex;


    position: fixed;
    background-color: #fff;
    width: calc(100% - 25px);
    /* width: 94.5%; */
    bottom: 20px;
    z-index: 6;
    zoom: 0.8;
    border-radius: 0 0 20px 20px;
    padding-bottom: 20px;
    box-shadow: none;
}

.logo_m,
.footer_m{
    display: none;
}

.reset {
    position: absolute;
    left: 0;
    bottom: 0;
}

.btn {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: transparent;
    background-color: #1297E2;
    font-size: 0;
    cursor: pointer;
}

.btn-screenshot {
    content: '';
    background-image: url("../images/screenshot.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #FD5A5A;
    bottom: 15px;
    right: 15px;
}

.btn-reset::after,
.btn-reset::before {
    position: absolute;
    content: '';
    border-radius: 10px;
    width: 19px;
    height: 2px;
    background-color: #fff;
}
.btn-reset::after {
    transform: rotate(90deg);
}
.btn-reset {
    top: 15px;
    right: 15px;
}


/* popup */

.owerlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: -1;
    transition: .3s;
}
.popup {
    position: absolute;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: .3s;
}
.owerlay-visible {
    opacity: 1;
    z-index: 99;
}
.popup-visible {
    opacity: 1;
    z-index: 109;
}
.popup form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 420px;
    height: 545px;
    padding: 40px;
}

.popup form h4 {
    font-size: 24px;
    margin-bottom: 40px;
}
.popup .item__checkbox {
    font-size: 12px;
    margin-top: 0;
    margin-left: 25px;
    margin-right: auto;
    margin-bottom: 20px;
}

.popup__closed {
    display: block;
    position: absolute;
    font-size: 0;
    width: 20px;
    height: 20px;
    border-color: transparent;
    top: 40px;
    right: 40px;
    cursor: pointer;
    background-color: transparent;
}

.popup__closed::before,
.popup__closed::after {
    display: block;
    position: absolute;
    content: '';
    top: 7px;
    left: -3px;
    transform: rotate(-45deg);
    border-radius: 20px;
    width: 24px;
    height: 2px;
    background-color: #000;
}
.popup__closed::after {
    transform: rotate(45deg);
}

.pb0 {
    padding-bottom: 0;
}
.jcsa {
    justify-content: space-around;
}
.aic{
    align-items: center;
}
.aise{
    align-items: self-end;
}

.mt0 {
    margin-top: 0px;
}
.mb0 {
    margin-bottom: 0px;
}

.fs12 {
    font-size: 12px;
}


.signature {
   position: absolute;
    font-family: Arial;
    font-size: 12px;
    right: 95px;
    bottom: 35px;
    font-style: italic;
    text-decoration: none;
    color: rgb(0 0 0 / 62%);
    transition: color ease .2s;
}

.signature:hover {
    color: rgba(0, 0, 0, 0.45);
}

.disabled {
    opacity: 0.5;
    pointer-events: none;
}

@media only screen and (max-height: 850px) {
  .form {
      zoom: 0.8;
    }
}

.confirmation__overlay {
    
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: transparent;
}
.confirmation__overlay_active {
    background: rgba(0, 0, 0, 0.3);
    z-index: 99;
}


.confirmation {
    display: flex;
    opacity: 0;
    flex-direction: column;
    background-color: #fff;
    width: 340px;
    align-items: center;
    padding: 30px;
    border-radius: 10px;
    transition: opacity ease .1s;
}

.confirmation__overlay_active .confirmation {
    opacity: 1;
}

.confirmation__title {
    font-weight: 400;
    font-size: 20px;
    line-height: 20.88px;
    margin-bottom: 10px;
}

.confirmation__block {
    margin-top: 15px;
}

.button {
    background-color: #fff;
    border: 1px solid #1297E2;
    color: #1297E2;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all ease .2s;
}



.button:hover {
    color: #fff;
    background-color: #1297E2;
}

.button_blue {
    background-color:#1297E2;
    color: #fff;
}
.button_blue:hover {
    background-color:#fff;
    color: #1297E2;
}

.mr10 {
    margin-right: 10px;
}


#material {
    margin-top: -1px;
}

.help {
    /* display: block; */
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    justify-content: center;
    align-items: center;
}
.help_text {
    text-align: center;
    font-size: 24px;
    color: #000;
    line-height: 30.48px;
}
.help_text  span{
    color: #FE0000;
}

@media (max-width: 800px) {
    .content {
        top: 20px;
        border-radius: 0;
        height: calc(100vh - 120px);
    }
}

/* @media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
    body {
        background-color: #E5E5E5;
    }
    .main {
        display: none;
    }
    .help {
        display: flex;
    }
    .help_text {
    
    }
} */