﻿.loader {
    /*border: 16px solid #f3f3f3;*/
    border-radius: 40%;
    /*border-top: 16px solid #3498db;*/
    /*border-top: 16px solid #3498db;*/
    /*border-bottom: 16px double #3498db;*/
    /*border-bottom: 16px double #420b88;*/
    background-image: url(images/Icono.png);
    background-size: cover;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}
.multiselect-parent {
    width: 100%;
}

    .multiselect-parent .dropdown-toggle {
        width: 100%;
    }

    .multiselect-parent .dropdown-menu {
        width: 100%;
    }


/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.animationColors {
    animation: color-change 1s infinite;
}
@keyframes color-change {
    0% {
        color: red;
    }

    50% {
        color: blue;
    }

    100% {
        color: red;
    }
}