html, body {
  background-color: #fafdff;
  font-family: 'Instrument Sans Regular';
}

strong {
  font-family: "Instrument Sans SemiBold" !important;
  color: rgb(65,65,65);
  font-weight: normal !important;
}

ul, ol {
  font-family: "Instrument Sans Medium";
  color: rgb(65,65,65);
  padding-left: 18px;
}

li {
  font-family: "Instrument Sans Regular";
  color: rgb(65,65,65);
  font-size: 17px;
}

.sidebar .block h5 {
  color: #2531c4;
  font-size: 18px;
  font-family: 'Instrument Sans Medium';
}

.sidebar .block {
  margin-bottom: 50px;
}

a, a:hover, a:focus, a:active {
  color: #2531c4;
}

.sidebar .block img {
  width: 100%;
  border-radius: 8px;
}

.bg-dark {
  background-color: #080b0f !important;
}

.wp-block-separator {
  border: 0;
  border-top: 1px solid rgba(0,0,0,.1) !important;
}

/*
 * Animation / Keyframes
 */
.default-translate-transition {
  transition: transform ease 0.4s;
}

.form-hidden, .form-hidden-button, .link-hidden {
  display: none;
}

.form-submit-animate {
  transform: translateY(8px);
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*
 * Heading / Paragraph
 */
h1 {
  color: rgb(65,65,65);
  font-family: "Instrument Sans SemiBold";
  font-size: 40px;
  padding-bottom: 5px;
}

h2 {
  color: rgb(65,65,65);
  font-family: "Instrument Sans SemiBold";
  font-size: 29px;
  padding-bottom: 5px;
}

.post-content > h2 {
  padding-top: 25px;
}

.post-content > img {
  width: 550px;
  height: auto;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
  margin-top: 20px;
  max-width: 100%;
}

h3 {
  color: rgb(65,65,65);
  font-family: "Instrument Sans Medium";
  font-size: 20px;
}

p {
  font-family: "Instrument Sans Regular";
  font-size: 17px;
}

label {
  font-family: "Instrument Sans Regular";
  font-size: 17px;
}

/*
 * Navbar
 */
.navbar {
  transition: 0.3s;
}

.nav .nav-item {
  padding: 5px;
  transition: background-color 0.2s;
}

.nav .nav-link {
  font-family: "Instrument Sans Regular";
}

.nav .nav-item.goalstreak {
  padding: 5px;
  border: 2px solid #b9b9b9;
  border-radius: 10px;
}

.nav .nav-item.goalstreak:hover {
  background-color: initial;
  transition: none;
}

.dropdown-menu {
  border-color: #e3e3e3;
  border-radius: 15px;
}

.dropdown-item {
  font-family: "Instrument Sans Regular";
}

.dropdown-item:active {
  background-color: #5D75CA;
}

.navbar-nav .nav-item:hover {
  background-color: rgba(75, 128, 255, 0.04);
  padding: 5px;
  border-radius: 10px;
}

.navbar-toggler:focus {
  outline-color: rgba(0,0,0,.1) !important;
}

.custom-select {
  background-color: #fafaff;
}

.badge {
  color: #fff;
  padding: 7px 9px 7px 9px;
  background-color: #1dc27cd9;
  /* border: solid 1px #208f4a57; */
  border-radius: 8px;
  font-family: 'Instrument Sans Regular';
  font-size: 12px;
}

.btn.btn-primary {
  background: linear-gradient(360deg, #100aa1 -17.11%, transparent) #1c42c9 281%;
  border: none;
  border-radius: 16px;
  padding: 13px 33px;
  color: rgb(255,255,255) !important;
  margin-top: 13px;
  transition: background 0.3s;
  cursor: pointer;
  font-family: "Instrument Sans Regular";
}

.btn-primary.pulse-shadow:not(:disabled):not(.disabled).active:focus, .btn-primary.pulse-shadow:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.pulse-shadow.dropdown-toggle:focus, .btn.btn-primary.pulse-shadow {
  animation: pulse-shadow 1.55s infinite cubic-bezier(0.51, 1.06, 0.94, 1.32);
  box-shadow: 0 0 0 0 rgb(29, 48, 206);
}

@keyframes pulse-shadow {
  to {
    box-shadow: 0 0 0 16px rgba(232, 76, 61, 0);
  }
}

.btn.btn-primary.hover-1 {
  transition: transform 0.2s;
}

.btn.btn-primary.hover-1:hover {
  transform: scale(0.95);
}

.btn.btn-primary.link {
  padding-top: 8px;
}

.btn.btn-primary.link:hover {
  color: white;
}

.btn.btn-primary:focus, .btn.btn-primary:active {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.btn.btn-primary:hover, .btn.btn-primary:active {
  background-color: #1d30ce !important;
}

/*
 * Browser Misc.
 */
::selection {
  background: #5D75CA;
  color: #ffffff;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  background: #5D75CA;
}

::-webkit-scrollbar-thumb:hover {
  background: #3f549c;
}

/*
 * Responsive
 */
@media all and (max-width: 959px) {
  .desktopContent {
    display: block;
  }
}

@media all and (max-width: 999px) {
  .desktopContent {
    display: none;
  }
}

@media all and (min-width: 959px) {
  .mobileContent {
    display: block;
  }
}

@media all and (min-width: 999px) {
  .mobileContent {
    display: none;
  }
}

.post-recommendation {
  margin-top: 35px;
  margin-bottom: 35px;
  background-color: #2d2ca912;
  padding: 25px;
  border: 1px solid #254eb212;
  border-radius: 8px;
}

.post-recommendation > div > div > a > img {
  transition: 0.2s;
}

.post-recommendation > div > div > a > img:hover {
  transform: scale(1.1);
}

.card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #2d2ca912;
  background-clip: border-box;
  border: 1px solid #254eb212;
  border-radius: 0.25rem;
  border-radius: 8px;
}

.thumbnail-wrapper {
  padding: 10px;
}

.card-body > p:nth-of-type(1) {
  font-size: 14px;
  margin-top: 16px;
}

.post-rating {
  margin-top: 35px;
  margin-bottom: 35px;
  background-color: #68ebc00d;
  padding: 30px 15px 30px 15px;
  border: 1px solid #2b9f351f;
  border-radius: 8px;
}

.progress {
  display: -ms-flexbox;
  display: flex;
  height: 20px;
  overflow: hidden;
  font-size: .75rem;
  background-color: #ddebe3;
  border-radius: 0.25rem;
}

.progress-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #2ab784;
  transition: width .6s ease;
}

.progress.circle {
  width: 150px;
  height: 150px !important;
  float: left;
  line-height: 150px;
  background: none;
  margin: 20px;
  box-shadow: none;
  position: relative;
}
.progress.circle:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 12px solid #ddebe3;
  position: absolute;
  top: 0;
  left: 0;
}
.progress.circle>span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}
.progress.circle .progress-left {
  left: 0;
}
.progress.circle .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 12px;
  border-style: solid;
  position: absolute;
  top: 0;
}
.progress.circle .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}
.progress.circle .progress-right {
  right: 0;
}
.progress.circle .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
  animation: loading-1 1.8s linear forwards;
}
.progress.circle .progress-value {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  font-size: 24px;
  color: rgb(65,65,65);
  font-family: "Instrument Sans Bold";
  line-height: 135px;
  text-align: center;
  position: absolute;
  top: 5%;
  left: 5%;
  margin-top: -9px;
}

.progress.circle .progress-label {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  color: rgb(65,65,65);
  line-height: 135px;
  text-align: center;
  position: absolute;
  top: 5%;
  left: 5%;
  margin-top: 17px;
  font-family: 'Instrument Sans Medium';
  font-size: 14px;

}

.progress.value > .line-break {
  display: block;
  margin-top: -0.2em;
}

.progress.circle .progress-bar {
  border-color: #2ab784;
}
.progress.circle .progress-left .progress-bar {
  animation: loading-2 1.5s linear forwards 1.8s;
}
@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(144deg);
    transform: rotate(144deg);
  }
}
@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}