body {
  height: 100%;
  padding: 0;
  display: block;
  margin: 0;
  background: #fff;
}

.flex_container {
  display: flex;
  flex-flow: row wrap;
  height: 100vh;
}

.current_items {
  width: 100%;
  margin: auto;
  transition: .4s;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
.current_items__row {
  border: 3px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  
}
.current_items .wrapper_input {
    width: 80%;
    position: relative;
    margin: 20px 0;
    padding: 15px;
    border: 2px solid #41c3af;
    border-radius: 30px;
    background: #ffffff;
    color: #212529;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    /* box-shadow: 3px 3px 3px #999;*/
}
.current_items .wrapper_input:hover {
    width: 80%;
    position: relative;
    margin: 20px 0;
    padding: 15px;
    border: 2px solid #009881;
    border-radius: 30px;
    background: #009881 !important;
    color: #ffffff;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    /* box-shadow: 3px 3px 3px #999;*/
}
.current_items input {
  display: none;
}
.current_items input:checked + label:after {
  transform: scale(1);
  opacity: 1;
}
.current_items label {
    font-weight: 300;
    letter-spacing: 1px;
    /*color: rgb(255 238 230);*/
    margin: 0;
    padding-left: 35px;
    display: inline-block;
    position: relative;
    cursor: pointer;
}
.current_items label:before {
    width: 20px;
    height: 20px;
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    background: #ffffff;
    margin-top: -10px;
    border-radius: 10px;
    border: 2px solid #009881;
}
.current_items label:after {
    background: #009881;
    left: 0;
    top: 50%;
    opacity: 0;
    margin-top: -6px;
    width: 12px;
    height: 12px;
    content: '';
    position: absolute;
    left: 4px;
    border-radius: 10px;
}
@media (min-width: 0px) and (max-width: 575px) {
    .current_items .wrapper_input {
        width: 100%;
    }
    .current_items .wrapper_input:hover {
        width: 100%;
    }
    .text-select-1 {
        font-size: 15px;
    }
    .text-select-2 {
        font-size: 15px;
         font-weight: bold;
    }
    .butt-check-1 {
        text-align: center;
        padding-top: 10px;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .current_items .wrapper_input {
        width: 100%;
    }
    .current_items .wrapper_input:hover {
        width: 100%;
    }
    .text-select-1 {
        font-size: 15px;
    }
    .text-select-2 {
        font-size: 16px;
         font-weight: bold;
    }
    .butt-check-1 {
        text-align: center;
        padding-top: 10px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .current_items .wrapper_input {
        width: 100%;
    }
    .current_items .wrapper_input:hover {
        width: 100%;
    }
    .text-select-1 {
        font-size: 14px;
    }
    .text-select-2 {
        font-size: 16px;
         font-weight: bold;
    }
    .butt-check-1 {
        text-align: center;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .current_items .wrapper_input {
        width: 80%;
    }
    .current_items .wrapper_input:hover {
        width: 80%;
    }
    .text-select-1 {
        font-size: 16px;
    }
    .text-select-2 {
        font-size: 16px;
         font-weight: bold;
    }
    .butt-check-1 {
        padding-left: 0px;
    }
}
@media (min-width: 1201px) and (max-width: 5000px) {
    .current_items .wrapper_input {
        width: 80%;
    }
    .current_items .wrapper_input:hover {
        width: 80%;
    }
    .text-select-1 {
        font-size: 18px;
    }
    .text-select-2 {
        font-size: 20px;
         font-weight: bold;
    }
    .butt-check-1 {
        padding-left: 0px;
    }
}