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

* @license   INNOVADELUXE
*/

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

@media (min-width: 769px) {
  div#idxrcombtab-custom-modal {
    width: 50%;
    left: 25%;
    bottom: 33%;
  }
}

#idxrcombtab-custom-modal .custom-modal-header {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

#idxrcombtab-custom-modal .custom-modal-header .custom-modal-close {
  font-size: 19px;
  /* line-height: 20px; */
  border-radius: 36px;
  border: 4px solid grey;
  padding: 2px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: block;
  text-align: center;
  color: grey;
  font-weight: bold;
}

#idxrcombtab-custom-modal .custom-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.idxrsuccess-checkmark {
  width: 80px;
  height: 115px;
  margin: 0 auto;
}
.idxrsuccess-checkmark .check-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid #4caf50;
}
.idxrsuccess-checkmark .check-icon::before {
  top: 3px;
  left: -2px;
  width: 30px;
  transform-origin: 100% 50%;
  border-radius: 100px 0 0 100px;
}
.idxrsuccess-checkmark .check-icon::after {
  top: 0;
  left: 30px;
  width: 60px;
  transform-origin: 0 50%;
  border-radius: 0 100px 100px 0;
  animation: rotate-circle 4.25s ease-in;
}
.idxrsuccess-checkmark .check-icon::before,
.idxrsuccess-checkmark .check-icon::after {
  content: "";
  height: 100px;
  position: absolute;
  background: #ffffff;
  transform: rotate(-45deg);
}
.idxrsuccess-checkmark .check-icon .icon-line {
  height: 5px;
  background-color: #4caf50;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 10;
}
.idxrsuccess-checkmark .check-icon .icon-line.line-tip {
  top: 46px;
  left: 14px;
  width: 25px;
  transform: rotate(45deg);
  animation: icon-line-tip 0.75s;
}
.idxrsuccess-checkmark .check-icon .icon-line.line-long {
  top: 38px;
  right: 8px;
  width: 47px;
  transform: rotate(-45deg);
  animation: icon-line-long 0.75s;
}
.idxrsuccess-checkmark .check-icon .icon-circle {
  top: -4px;
  left: -4px;
  z-index: 10;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  box-sizing: content-box;
  border: 4px solid rgba(76, 175, 80, 0.5);
}

.idxrsuccess-checkmark .check-icon .icon-circle:before {
  content: "";
}
.idxrsuccess-checkmark .check-icon .icon-fix {
  top: 8px;
  width: 5px;
  left: 26px;
  z-index: 1;
  height: 85px;
  position: absolute;
  transform: rotate(-45deg);
  background-color: #ffffff;
}

@keyframes rotate-circle {
  0% {
    transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}
@keyframes icon-line-tip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@keyframes icon-line-long {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
