#roomInputModal{
    z-index: 1000;
    font-size: 16px;
    text-align: center;
    position: absolute;
    background: #fff;
    right:0;
    top:0;
    left:0;
    color:#000;
    display: none;
    width: calc(100% + 10px);
 
}

@media all and (max-width:768px){
    #roomInputModal{
        max-width: 100%;
    }
  
}

#roomInputModal table{
    border: 10px solid white;
    width: 100%;
    background: white;
    -webkit-box-shadow: 0 0 16px rgba(0,0,0,.5);
    box-shadow: 0 0 16px rgba(0,0,0,.5);
    outline: 1px solid #aaa;
    border-radius: 2px;
    
}

#roomInputModal thead td{
    padding: 5px;
}


#clearAll{
    margin-left: -5px;
}

.error{
    color: red;
}

.ages{
    padding-bottom: 5px;
}
.error p{
    margin: 10px 5px 0;
    display: none;
}
#roomInputModal select{
    border-collapse: collapse;
    text-align: center;
    border-radius: 2px;
    height: 30px;
    width: 40px;
    cursor: pointer;
    margin: 2px auto;
    padding: 0;
}

#roomInputModal select:focus{
    border: 1px solid #379e97;
    outline: none;
    -webkit-box-shadow: inset 0 0px 2px rgba(0,0,0,.25), 0 0 8px rgba(55, 158, 151,.75);
    box-shadow: inset 0 0px 2px rgba(0,0,0,.25), 0 0 8px rgba(55, 158, 151,.75);
}


.room__row{
    border-bottom: 1px solid #eaeaea;
}

.room__row:first-of-type td{
    padding-bottom: 5px;
}

.remove__hidden{
    opacity: 0;
    pointer-events: none;
}

.button{
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 2px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: 0.2s ease;
}

.button--primary {
    color: #ffffff;
    background-color: #379e97;
    border-color: #308b85;
}

.button--primary:hover {
    color: #ffffff;
    background-color: #2a7873;
    border-color: #215e5a;
}


.button.disabled, .button[disabled], fieldset[disabled] .button {
    cursor: not-allowed;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #2d2d2d;
}

.button--primary.disabled:hover, .button--primary[disabled]:hover, fieldset[disabled] .button--primary:hover, .button--primary.disabled:focus, .button--primary[disabled]:focus, fieldset[disabled] .button--primary:focus, .button--primary.disabled.focus, .button--primary[disabled].focus, fieldset[disabled] .button--primary.focus {
    background-color: #379e97;
    border-color: #308b85;
    color: #2d2d2d;
}

.button--warning {
    color: #ffffff;
    background-color: #ffbb33;
    border-color: #ffb219;
}

.button--warning:hover {
    color: #ffffff;
    background-color: #ffaa00;
    border-color: #db9200;
}

.button--sm, .button-group--sm > .button {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 2px;
}

.removeRoom{
    cursor: pointer;
    color: darkred;
}
.removeRoom:hover,.removeRoom:focus{
    color: darkred;
}

#addRoomRow td{
    padding-top: 10px;
}

#closeButton{
    width: 70px;
}

#roomInputModal .ages select{
    margin: 2px;
}

@media all and (max-width:392px){
     #roomInputModal{
         width: 100% !important;
         text-align: left;
         font-size: 12px;
         overflow: hidden;
     }

#roomInputModal table{
    -webkit-box-shadow: none;
    box-shadow: none;
}

     #roomInputModal select{
         margin: 2px 0;
     }

     .hide-mobile{
         display: none !important;
     }

     #closeButton {
     
        left: -10px;
        position: relative;
    }

     .removeRoom {
        padding: 0;
    }
}