.bg-modas{
    background-color: #065664;
}

.scroll_vertical {
  width: 100%;
  max-height: 400px;
  overflow-y: auto;
}

.icn-wamlart{
    width: 100%;
    height: 100%;
    background-image: url('/public/files/dist/img/walmart.png');
}

/**Modificar scroll para .scroll_vertical*/
.scroll_vertical::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.scroll_vertical::-webkit-scrollbar-track {
background-color: darkgrey;
}

.scroll_vertical::-webkit-scrollbar-thumb {
background-color: #094992;
}

.col-opciones{
  padding-left: 1%;
  padding-right: 1%;
}

.icn{
    width: 20px;
}

object::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

object::-webkit-scrollbar-track {
background-color: darkgrey;
}

object::-webkit-scrollbar-thumb {
background-color: #094992;
}

.modal .modal-body {    
overflow-y: auto;
max-height: 450px;
}

/**Modificar scroll para .modal .modaL-body*/
.modal .modal-body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.modal .modal-body::-webkit-scrollbar-track {
background-color: darkgrey;
}

.modal .modal-body::-webkit-scrollbar-thumb {
background-color: #094992;
}

.circle-small{
    width: 200px;
    height: 200px;
    border: 6px outset rgb(133,224,242);
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    right: 50%;
    bottom: 50%;
    margin-left: -81px;
    margin-top: -81px;
    border-radius: 156px;
    -moz-animation: rotate-rev 3s infinite linear;
    -webkit-animation: rotate-rev 3s infinite linear;
    animation: rotate-rev 3s infinite linear;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.circle-inner-inner{
    width: 140px;
    height: 140px;
    background-color: rgb(74,124,134);
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    right: 50%;
    bottom: 50%;
    margin-left: -50px;
    margin-top: -50px;
    border-radius: 100px;
    -moz-animation: pulse 1.5s infinite ease-in;
    -webkit-animation: pulse 1.5s infinite ease-in;
    animation: pulse 1.5s infinite ease-in;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

/*==============ANIMATIONS=================*/

/*==============ROTATE=====================*/

@-moz-keyframes rotate{
  0% {-moz-transform: rotate(0deg);}
  100% {-moz-transform: rotate(360deg);}
}

@-webkit-keyframes rotate{
	0% {-webkit-transform: rotate(0deg);}
	100% {-webkit-transform: rotate(360deg);}
}

@keyframes rotate{
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}

/*==============ROTATE-REV=================*/

@-moz-keyframes rotate-rev{
	0% {-moz-transform: rotate(0deg);}
	100% {-moz-transform: rotate(-360deg);}
}

@-webkit-keyframes rotate-rev{
	0% {-webkit-transform: rotate(0deg);}
	100% {-webkit-transform: rotate(-360deg);}
}

@keyframes rotate-rev{
	0% {transform: rotate(0deg);}
	100% {transform: rotate(-360deg);}
}

/*==============PULSE======================*/

@-moz-keyframes pulse{
	0% {
        -moz-transform: scale(0.1);
        opacity: 0.2;
    }
	50% {
        -moz-transform: scale(1);
        opacity: 0.8;
    }
    100% {
        -moz-transform: scale(0.1);
        opacity: 0.2;
    }
}

@-webkit-keyframes pulse{
	0% {
        -webkit-transform: scale(0.1);
        opacity: 0.2;
    }
	50% {
        -webkit-transform: scale(1);
        opacity: 0.8;
    }
    100% {
        -webkit-transform: scale(0.1);
        opacity: 0.2;
    }
}

@keyframes pulse{
	0% {
        transform: scale(0.1);
        opacity: 0.2;
    }
	50% {
        transform: scale(1);
        opacity: 0.8;
    }
  100% {
        transform: scale(0.1);
        opacity: 0.2;
    }
}