@import 'fonts';
//multi upload images Collage
html * {
    box-sizing: border-box;
  }
  
p {
  margin: 0;
}

.upload {
  &__inputfile {
  }
  
  &__btn {
    &:hover {
      background-color: unset;
      color: #4045ba;
      transition: all .3s ease;
    }
    
    &-box {
      margin-bottom: 10px;
    }
  }
  
  &__img {
    &-wrap {
      display: flex;
      flex-wrap: wrap;
      margin: 0 -10px;
    }
    
    &-box {
      width: 200px;
      padding: 0 10px;
      margin-bottom: 12px;
    }
    
    &-close {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.5);
        position: absolute;
        top: 10px;
        right: 10px;
        text-align: center;
        line-height: 24px;
        z-index: 1;
        cursor: pointer;

        &:after {
          content: '\2716';
          font-size: 14px;
          color: white;
        }
      }
  }
}

.img-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-bottom: 100%;
}

.d-none{
  display: none;
}

//tables
.table{
  td{
    vertical-align: middle!important;
  }
}

.bg-preview-vi{
  background-image: url(/images/backgrounds/frequenly_request_position_background.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 20rem; 
  position:relative; 
  display: grid;
}

.disabled-video{
  pointer-events: none;
  .bg-preview-vi{
    filter: grayscale(1);
  }
}

// Modal

// .modal-dialog-centered {
//   height: 100%;
//   width: 100%;
//   display: flex;
//   align-items: center;
//   .modal-content {
//     margin: 0 auto;
//   }
// }

//Loader
.loader-img {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #fccd20; /* Blue */
  border-radius: 50%;
  width: 100px;
  height: 100px;
  animation: spin 2s linear infinite;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#container-loader{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  background-color: #00000096;
}

span.ch{
  background: url(/images/ch-negro.svg) no-repeat top left;
  background-size: contain;
  cursor: pointer;
  display: inline-block;
  height: 30px;
  width: 30px;
}

.btn-primary:hover{
  span.ch{
    background: url(/images/ch-blanco.svg) no-repeat top left!important;
  }
}

.tippy-popper{
  .tippy-content{
    font-size: 13px!important;
  }
}

.select2-container .select2-selection--single{
  height: 34px!important;
}

.img-fluid{
  width: 100%;
  height: auto;
}

.avatar-selected{
  border: 3px solid #fccd20;
  border-radius: 100%;
}

//input tags
#sectionCategory{
  .bootstrap-tagsinput{
    display: contents;
    input{
      display:none;
    }
  }
}
