141AB6
.alert-primary {
  color: #8F93F3;
  background-color: #03041A;
  border-color: #787CF0;
}

.alert-primary hr {
  border-top-color: #0F1388;
}

.alert-primary .alert-link {
  color: #101596;
}

.badge-primary {
  color: #fff;
  background-color: #141AB6;
}

.badge-primary[href]:hover, .badge-primary[href]:focus {
  color: #fff;
  background-color: #A1A4F5;
}

.bg-primary {
  background-color: #141AB6 !important;
  color: #fff;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #A1A4F5 !important;
}

.border-primary {
  border-color: #141AB6 !important;
}

.btn-primary {
  color: #fff;
  background-color: #141AB6;
  border-color: #141AB6;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0D117A;
  border-color: #A1A4F5;
}

.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(20, 26, 182, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #141AB6;
  border-color: #141AB6;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #A1A4F5;
  border-color: #080A48;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(20, 26, 182, 0.5);
}

.btn-outline-primary {
  color: #141AB6;
  background-color: transparent;
  border-color: #141AB6;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #141AB6;
  border-color: #141AB6;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(20, 26, 182, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #141AB6;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #141AB6;
  border-color: #141AB6;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(20, 26, 182, 0.5);
}

.list-group-item-primary {
  color: #8F93F3;
  background-color: #787CF0;
}

.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #8F93F3;
  background-color: #0F1388;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #8F93F3;
  border-color: #8F93F3;
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #787CF0;
}

.table-hover .table-primary:hover {
  background-color: #0F1388;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #0F1388;
}

.text-primary {
  color: #141AB6 !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #A1A4F5 !important;
}

a {
  color: #141AB6;
}

a:hover, a:focus {
  color: #A1A4F5;
}

/* fix for buttons dropping down at certain width */
.courseCard {
  container-type: inline-size;
}
@container (max-width: 255px) {
  .btn-action{
    display: none;
  }
}
/* share links */
.share_social {

}
.share-icon {
  margin-bottom: 1rem;
  margin-right: 1rem;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  transition:.5s;
}
.share-facebook, .share-facebook:focus {
  color: #3b5998;
  background-color: #eceff5;
}
.share-facebook:hover {
  color: #eceff5;
  background-color: #3b5998;
}
.share-twitter, .share-twitter:focus {
  color: #000000;
  background-color: #E0E0E0;
}
.share-twitter:hover {
  color: #E0E0E0;
  background-color: #000000;
}
.share-whatsapp, .share-whatsapp:focus {
  color:  #25D366;
  background-color: #cef5dc;
}
.share-whatsapp:hover {
  color:  #cef5dc;
  background-color: #25D366;
}
.share-telegram, .share-telegram:focus {
  color:  #4c6ef5;
  background-color: aliceblue
}
.share-telegram:hover {
  color:  aliceblue;
  background-color: #4c6ef5;
}
.share-url {
  color:  #fff;
  background-color: #141AB6;
}
.share-url:hover {
  color: #fff;
  background-color: #A1A4F5;
}

.courseCard:hover .btn-fav {
  display: block;
}
.btn-fav {
  display: none;
}
.btn-fav:hover {
  #text-shadow: 1px 1px 1px #999999;
}
.btn-unfav:hover {
  #text-shadow: 1px 1px 1px #999999;
}
.text-shadow {
  text-shadow: 1px 1px 1px #999999;
}
.rotate {
  -webkit-animation:spin 4s linear infinite;
  -moz-animation:spin 4s linear infinite;
  animation:spin 4s linear infinite;
}
@-moz-keyframes spin {
    100% { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform:rotate(360deg);
    }
}