@charset "UTF-8";
fieldset.check-in-select{border: 0 none;padding:0}

.checkinselect-contener * {
  box-sizing:border-box;
}

.checkinselect-contener {
  position: relative;
  cursor: pointer;
}

.checkinselect-contener .checkinselect-label {
  width: 100%;
  border-radius: 8px;
  background: #ebebeb;
  text-align: center;
  color: #7e7e7e;
}
.checkinselect-contener.on .checkinselect-label, .checkinselect-contener:focus-within .checkinselect-label{
  border-radius: 8px 8px 0 0;
}
/*outline-offset:0;outline:2px solid #0060df;-webkit-transition:all 0s ease;transition:all 0s ease*/
.checkinselect-contener .checkinselect-label.selected {
  color: #222;
}

.checkinselect-contener .checkinselect-label:before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='11' viewBox='0 0 53.91 28.46'%3E%3Cpolyline fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3px' points='52.41 1.5 26.96 26.96 1.5 1.5'/%3E%3C/svg%3E");
  height: 45px;
  width: 45px;
  padding:0 16.5px;/*0 16.5px|17px 16.5px 0 16.5px*/
  background-color: #424242;
  border-radius: 0 8px 8px 0;
  float:right;
}
.checkinselect-contener.on .checkinselect-label:before, .checkinselect-contener:focus-within .checkinselect-label:before{
  content:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='11' viewBox='0 0 53.91 28.46' transform='rotate(180)'%3E%3Cpolyline fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3px' points='52.41 1.5 26.96 26.96 1.5 1.5'/%3E%3C/svg%3E");
  border-radius: 0 8px 0 0;
}

.checkinselect-contener, .checkinselect-contener .checkinselect-label {
  height: 45px;
  line-height: 45px;
}

.checkinselect-contener .checkinselect-list {
  position: absolute;
  top: 45px;
  left: 0;
  right: 0;
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.15);
  transform-origin: 50% 0;
  transform: scale(1, 0);
  transition: transform 0.15s ease-in-out 0.15s;
/*  max-width: calc(100% - 45px);*/
  max-height: 66vh;
  z-index: 1000;
  background-color: #ebebeb;
  color: #424242;
}

.checkinselect-contener .checkinselect-options-list {
  padding: 10px 0 10px 0;
  overflow-y: auto;
  max-height: calc(66vh - 50px);
  margin: 0;
}

.cms .checkinselect-contener .checkinselect-options-list .checkinselect-item,
.checkinselect-contener .checkinselect-options-list .checkinselect-item {
  display:-webkit-box;display:-ms-flexbox;display:flex;
  -ms-flex-pack:distribute;justify-content:space-around;
  justify-content: space-around;
  -webkit-box-align:center;-ms-flex-align:center;
  align-items:center;
  
  padding: 0 18px 0 12px;
  border-top:1px solid #ebebeb;
  border-bottom:1px solid #ebebeb;
  background-image: none;
}

.checkinselect-contener .checkinselect-options-list .checkinselect-item:hover,
.checkinselect-contener .checkinselect-options-list .checkinselect-item:focus,
.checkinselect-contener .checkinselect-options-list .checkinselect-item:active{
  border-top:1px solid #424242;
  border-bottom:1px solid #424242;
  background-color: #424242;
}

.checkinselect-contener .checkinselect-options-list .checkinselect-item:hover label,
.checkinselect-contener .checkinselect-options-list .checkinselect-item:focus label,
.checkinselect-contener .checkinselect-options-list .checkinselect-item:active label{
  color: #ebebeb;
}

.checkinselect-contener .checkinselect-list [type="checkbox"],
.checkinselect-contener .checkinselect-list label {
  padding-top: 10px;
  padding-bottom:10px;
  height: auto;
  display: inline-block;
  line-height: normal;
  margin: 0;
  cursor: pointer;
}

.checkinselect-contener .checkinselect-list [type="checkbox"] {
  width: auto;
  border-radius:0;
}
.checkinselect-contener .checkinselect-list label {
  width: calc(100% - 20px);
  padding-left: 10px;
  color: #424242;
  font-weight: normal;
}

.checkinselect-contener.on .checkinselect-list, .checkinselect-contener:focus-within .checkinselect-list {
  transform:scale(1, 1);
  transition-delay: 0s;
}

.checkinselect-contener .checkinselect-btn-contener {
  background-color: #424242;
  display:-webkit-box;display:-ms-flexbox;display:flex;
  -ms-flex-pack:distribute;justify-content:space-around;
  justify-content: space-around;
  line-height:normal;
}

.checkinselect-contener .checkinselect-btn  {
  display: block;
  text-decoration: none;
  color:#fff;
  padding: 10px 0;
  margin: 0 10px;
  width: 100%;
  text-align: center;
}

.checkinselect-contener .checkinselect-btn.checkinselect-close {
  color: #fff;
  background-color: #f28e00;
  max-width: 75px;
}
.checkinselect-contener .checkinselect-btn-contener .checkinselect-btn:first-child {
  margin-left:0;
}
.checkinselect-contener .checkinselect-btn-contener .checkinselect-btn:last-child {
  margin-right:0;  
}
.checkinselect-contener .checkinselect-btn:hover {
  color:#f28e00;
}
.checkinselect-contener .checkinselect-btn.checkinselect-close:hover {
  background-color: #424242;
}

@media screen and (max-width:768px){
  .checkinselect-contener .checkinselect-options-list{
    max-height: calc(60vh - 50px);
  }
  .checkinselect-contener .checkinselect-btn-contener{
    display: block;
  }
  .checkinselect-contener .checkinselect-btn {
    text-align: center;
  }

  .checkinselect-contener .checkinselect-btn-contener .checkinselect-btn{
    margin: 0;
  }

  .checkinselect-contener .checkinselect-btn.checkinselect-close {
    max-width: none;
  }
}