/*
* Yruhz v1.0.0
* Copyright 2021
*/

/* CONTENT LOAD */

.cload {
  position: relative;
  overflow: hidden;
  background-color: rgba(0,0,0,.10);
}
.cload.cload-white {
  background-color: #e3e7ed;
}

.cload-bg0 {
  background-color: rgba(0,0,0,.0);
}

.cload-mh {
  min-height: 20px;
}

.cload-mh10 {
  min-height: 10px;
}

.cload-mw {
  min-width: 80%;
}

.cload-h100 {
  height: 100px;
}

.cload-h50 {
  height: 50px;
}

.cload-h40 {
  height: 40px;
}

.cload-h30 {
  height: 30px;
}

.cload-h20 {
  height: 20px;
}

.cload-h15 {
  height: 15px;
}

.cload-h10 {
  height: 10px;
}

.cload-w100 {
  width: 100%;
}

.cload-w90 {
  width: 90%;
}

.cload-w80 {
  width: 80%;
}

.cload-w70 {
  width: 70%;
}

.cload-w60 {
  width: 60%;
}

.cload-w50 {
  width: 50%;
}

.cload-w40 {
  width: 40%;
}

.cload-w30 {
  width: 30%;
}

.cload-w20 {
  width: 20%;
}

.cload-w10 {
  width: 10%;
}

.cload-svg1 {
  color: #aeb3c3 !important;
  fill: rgb(238 240 247) !important;
}

.cload-border-50 {
  border-radius: 50%;
}

.cload::before {
  content: '';
  display: block;
  position: absolute;
  left: -150px;
  top: 0;
  height: 100%;
  width: 150px;
  background: linear-gradient(to right, transparent 0%, rgba(255,255,255,.10) 50%, transparent 100%);
  animation: content-loading 1s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
  border-radius: 1px;
}

.cload.cload-white::before {
  content: '';
  display: block;
  position: absolute;
  left: -150px;
  top: 0;
  height: 100%;
  width: 150px;
  background: linear-gradient(to right, transparent 0%, #cdd4e0 50%, transparent 100%);
  animation: content-loading 1s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
}

.cload.cload-dark::before {
  content: '';
  display: block;
  position: absolute;
  left: -150px;
  top: 0;
  height: 100%;
  width: 150px;
  background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .20) 50%, transparent 100%);
  animation: content-loading 1s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
}

@keyframes content-loading {
  from {
    left: -150px;
  }
  to   {
    left: 100%;
  }
}

.pointer {
  cursor: pointer;
}

.loader {
  width: 48px;
  height: 48px;
  border-width: 5px;
  border-style: solid;
  border-color: #3b4863;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: loader 1s linear infinite;
}

.loader-sm {
  width: 17px !important;
  height: 17px !important;
  border-width: 2px !important;
}

.loader-ligth {
  border-color: #FFF !important;
  border-bottom-color: transparent !important;
}

.loader-primary {
  border-color: #0168fa !important;
  border-bottom-color: transparent !important;
}

.loader-success {
  border-color: #10b759 !important;
  border-bottom-color: transparent !important;
}

.loader-danger {
  border-color: #dc3545 !important;
  border-bottom-color: transparent !important;
}

.loader-warning {
  border-color: #ffc107 !important;
  border-bottom-color: transparent !important;
}

.loader-danger {
  border-color: #00b8d4 !important;
  border-bottom-color: transparent !important;
}

.loader-secondary {
  border-color: #7987a1 !important;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.modalPermissionBrowseAudio {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 21, 32, 0.9);
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.modalPermissionBrowseAudio > * {
  cursor: default;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.modalPermissionBrowseAudio .content {
  max-width: 450px;
  color: #FFF;
  margin: 0 !important;
  padding: 0 !important;
}

.modalPermissionBrowseAudio .content .text {
  flex: 1;
}

.modalPermissionBrowseAudio .content .text h2 {
  color: #66fff9;
}

.modalPermissionBrowseAudio .content .text p {
  margin-bottom: 0px;
}

.modalPermissionBrowseAudio .content .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255,255,255,.15);
  color: #FFF;
}

.modalPermissionBrowseAudio .content .btn {
  border: 0px solid;
  margin-top: 10px;
  padding: 8px 25px;
  border-radius: 30px;
  background-color: #838487;
  color: #FFF;
  font-weight: bold;
  outline: none;
}