/**
* 2007-2016 PrestaShop
*
* NOTICE OF LICENSE
*
* @author    Innovadeluxe SL
* @copyright 2016 Innovadeluxe SL

* @license   INNOVADELUXE
*/

#idxrcombtab-stock-modal {
  display: none;
  position: fixed;
  bottom: 0;
  z-index: 10000000;
  background: #fff;
  width: 100%;
  border-radius: 10px;
  padding: 20px;
}

div#idxrcombtab-stock-modal {
  width: 100%;
  max-width: 480px;
  left: 0%;
  right: 0%;
  margin: 0 auto;
  top: 5%;
  bottom: 20%;
}
#idxrcombtab-stock-modal .stock-modal-header {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

#idxrcombtab-stock-modal .stock-modal-header .stock-modal-close {
    font-size: 24px;
    line-height: 36px;
    border-radius: 36px;
    border: 2px solid grey;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: block;
    text-align: center;
    color: grey;
}

#idxrcombtab-stock-modal .stock-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  overflow-y: auto;
}

#idxrcombtab-stock-modal .stock-modal-body .buttons {
  display: flex;
  width: 100%;
  justify-content: space-around;
}

#idxrcombtab-stock-modal .query_combination {
  margin: 10px 0px;
  padding: 10px;
  text-align: center;
  border: 1px solid #4c79ac;
  background: #ecf9fd;
  border-radius: 5px;
  color: #4c79ac;
}

div#idxrcombtab-stock-modal-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  background: #80808096;
  z-index: 1000000;
  top: 0;
  bottom: 0;
}

#idxrcombtab-stock-modal .checkbox.tb-checkbox input{
  opacity: 1;
}
@media (max-width: 768px){
  div#idxrcombtab-stock-modal {
    width: 100%;
    left: 0%;
    top: 0%;
    bottom: 0%;
  }
}