*,
*::before,
*::after {
    box-sizing: border-box;
    font-family: sans-serif;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: #48a4ff
}

.list-unstyled {
    list-style: none;
    padding: 0;
}

.list-group {
    border: 1px solid #ccc;
    padding: 0 10px;
    margin: 10px;
    border-radius: 5px;
}

.list-group li {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.list-group li:last-child {
    border-bottom: none;
}

[class^=row] {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
}

.row-justify {
    justify-content: space-between;
}

.col-2 {
    flex: 0 0 48%;
}

label {
    display: inline-block;
    min-width: 80px;
    margin-right: 10px;
}

.small-form {
    width: 500px;
    padding: 15px;
    margin: 20px auto;
    border: 3px double #3f73ff;
}
.border-success {
    border: 3px double #14a814;
}
input {
    padding: 8px;
}

.btn {
    display: inline-block;
    background-color: #3f73ff;
    color: #fff;
    border: 2px solid;
    padding: 10px 25px;
    margin: 10px auto;
    transition: .5s;
}

.btn-info {
    background-color: #3f73ff;
    color: #fff;
}
.btn-info:hover {
    background-color: #224ec3;
}
.btn-success:hover {
    background-color: #0b890b;
}
.btn-success {
    background-color: #14a814;
    color: #fff;
}


table {
    border: 2px solid #666;
    margin: 20px auto;
    border-collapse: collapse;
}

th,
td {
    padding: 8px;
    border: 1px solid #999;
}

.full-width {
    width: 100%;
}

.small-width {
    width: 500px;
}
/*-- loaders --*/

.loader {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    position: absolute;
    top: 45%;
    left: 45%;
    margin: 0 auto;
}
/* LOADER 1 */

#loader-1:before, #loader-1:after{
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 10px solid transparent;
  border-top-color: #3498db;
}

#loader-1:before{
  z-index: 100;
  animation: spin 1s infinite;
}

#loader-1:after{
  border: 10px solid #ccc;
}

@keyframes spin{
  0%{
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100%{
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* LOADER 2 */

#loader-2 span{
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #3498db;
  margin: 35px 5px;
}

#loader-2 span:nth-child(1){
  animation: bounce 1s ease-in-out infinite;
}

#loader-2 span:nth-child(2){
  animation: bounce 1s ease-in-out 0.33s infinite;
}

#loader-2 span:nth-child(3){
  animation: bounce 1s ease-in-out 0.66s infinite;
}

@keyframes bounce{
  0%, 75%, 100%{
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  25%{
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

/* LOADER 3 */

#loader-3:before, #loader-3:after{
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: calc(50% - 10px);
  background-color: #3498db;
  animation: squaremove 1s ease-in-out infinite;
}

#loader-3:after{
  bottom: 0;
  animation-delay: 0.5s;
}

@keyframes squaremove{
  0%, 100%{
    -webkit-transform: translate(0,0) rotate(0);
    -ms-transform: translate(0,0) rotate(0);
    -o-transform: translate(0,0) rotate(0);
    transform: translate(0,0) rotate(0);
  }

  25%{
    -webkit-transform: translate(40px,40px) rotate(45deg);
    -ms-transform: translate(40px,40px) rotate(45deg);
    -o-transform: translate(40px,40px) rotate(45deg);
    transform: translate(40px,40px) rotate(45deg);
  }

  50%{
    -webkit-transform: translate(0px,80px) rotate(0deg);
    -ms-transform: translate(0px,80px) rotate(0deg);
    -o-transform: translate(0px,80px) rotate(0deg);
    transform: translate(0px,80px) rotate(0deg);
  }

  75%{
    -webkit-transform: translate(-40px,40px) rotate(45deg);
    -ms-transform: translate(-40px,40px) rotate(45deg);
    -o-transform: translate(-40px,40px) rotate(45deg);
    transform: translate(-40px,40px) rotate(45deg);
  }
}

/* LOADER 6 */

#loader-6 {
    top: 40px;
    left: -2.5px;
}

#loader-6 span {
    display: inline-block;
    width: 5px;
    height: 20px;
    background-color: #3498db;
}

#loader-6 span:nth-child(1) {
    animation: grow 1s ease-in-out infinite;
}

#loader-6 span:nth-child(2) {
    animation: grow 1s ease-in-out 0.15s infinite;
}

#loader-6 span:nth-child(3) {
    animation: grow 1s ease-in-out 0.30s infinite;
}

#loader-6 span:nth-child(4) {
    animation: grow 1s ease-in-out 0.45s infinite;
}

@keyframes grow {

    0%,
    100% {
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        transform: scaleY(1);
    }

    50% {
        -webkit-transform: scaleY(1.8);
        -ms-transform: scaleY(1.8);
        -o-transform: scaleY(1.8);
        transform: scaleY(1.8);
    }
}
