/************************************************************************************/
/* General */
/************************************************************************************/

html {
  overflow: auto;
}

body {
  margin: 0;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 16px;
}

h1 {
  font-size: 35px;
  font-family: 'Lato-Black', Arial, sans-serif;
  font-weight: bolder;
  margin: 0 0 10px;
  line-height: 1.1;
}

a {
  color: #015d97;
}

.sticky-nav {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 500;
}

.pink {
  color: #e70c93;
}

.red {
  color: #ab2e2e !important;
}

.light-blue {
  color: #48bdf3;
}

.main-blue {
  color: #0275BD;
}

.blue {
  color: #015d97;
}

.dark-blue {
  color: #02273e;
}

.violet {
  color: #ab3275;
}

.blue-grey {
  color: #7d8f9b;
}

.dark-grey-blue {
  color: #345264;
}

.btn:hover {
  color: white;
  -webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, .5));
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, .5));
}

.blue-btn,
.violet-btn,
.transparent-btn,
.dark-blue-btn,
.white-btn,
.red-btn,
.green-btn {
  font-weight: bold;
  display: inline-block;
  font-size: 17px;
  margin: 15px auto;
  padding: 10px 25px 9px;
  border-radius: 10px;
  color: white;
}

.green-btn {
  background: #0aca24;
}

.blue-btn {
  background: #015d97;
}

.dark-blue-btn {
  background: #02273e;
}

.blue-btn:hover, .transparent-btn:hover {
  background: #02273e;
}

.violet-btn {
  background: #ab3275;
}

.violet-btn:hover {
  background: #782151;
}

.transparent-btn {
  border: 2px solid white;
}

.white-btn {
  color: #015d97;
  background-color: white;
  box-shadow: 0 10px 40px 0 rgba(1, 68, 151, 0.2);
}

.red-btn {
  background: #ab2e2e;
}

.white-btn:hover {
  background: #02273e;
  color: #fff;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.container-blue {
  background-color: rgba(1, 93, 151, 0.09);
  color: #02273e;
}

button.play {
  display: block !important;
  border-radius: 50%;
  height: 66px;
  transition: transform .2s ease-out;
  width: 66px;
  touch-action: manipulation;
  background: rgba(171, 50, 117, .8);
  border: 0;
  position: relative;
}

button.play:before {
  animation: fx-plyr-play-button 2s ease-out infinite;
  border: 6px solid #ab3275;
  border-radius: 200%;
  box-shadow: 0 0 5px rgba(0, 0, 0, .3);
  box-sizing: border-box;
  content: "";
  height: 200%;
  left: -50%;
  position: absolute;
  top: -50%;
  width: 200%;
}

.play svg {
  display: block;
  fill: white;
  height: 18px;
  pointer-events: none;
  width: 18px;
  left: 21px;
  position: relative;
}

.play span {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  border: 0 !important;
  height: 1px !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  font-weight: 400 !important;
}

@keyframes fx-plyr-play-button {
  0% {
    transform: scale(.5);
  }
  100% {
    opacity: 0;
  }
}

.play span {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  border: 0 !important;
  height: 1px !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 29px;
  }
}

@media (max-width: 586px) {
  h1 {
    font-size: 25px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 20px;
  }
}

@media (max-width: 586px) {
  h1 {
    font-size: 23px;
  }

  h4 {
    font-size: 18px;
  }
}

.masthead {
  width: 100%;
  padding: 114px 0 50px 0;
  background-size: cover;
  text-align: center;
  position: relative;
  color: #fff;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6) 0 0 18px 500px inset;
}

@media screen and (max-width: 768px) {
  .masthead {
    padding: 75px 0 25px;
  }
}

/************************************************************************************/
/* Tooltips */
/************************************************************************************/
span.tooltip-container {
  display: inline-block;
  border-radius: 100%;
  height: 16px;
  width: 16px;
  color: white;
  font-size: 11px;
  line-height: 16px;
  font-weight: 900;
  text-align: center;
  margin-left: 5px;
  cursor: pointer;
  position: relative;
}

.tooltip-container:hover .tooltiptext {
  visibility: visible;
}

.tooltip-container .tooltiptext {
  visibility: hidden;
  width: 200px;
  margin-left: -100px;
  z-index: 102;
  background-color: #02273e;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 8px 12px 9px;
  position: absolute;
  bottom: 130%;
  left: 50%;
  text-transform: none;
  font-size: 13px;
  line-height: 22px;
  font-weight: normal;
  white-space: normal;
}

.tooltip-container .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #02273e transparent transparent transparent;
}

/************************************************************************************/
/* Children international */
/************************************************************************************/

.children-international img {
  width: 185px;
}

/************************************************************************************/
/* iRadio */
/************************************************************************************/

.learn-more-content .iradio_square-pink
{
  background-image:url(../../front/img/blue.png);
  background-position:-72px 0;
  background-size:auto!important;
}
.learn-more-content .iradio_square-pink.hover
{
  background-position: -96px 0;
}
.learn-more-content .iradio_square-pink.checked
{
  background-position: -120px 0;
}
.learn-more-content .radio label
{
  padding-left:0;
}

/************************************************************************************/
/* Copy to Clipboard Pop Up */
/************************************************************************************/

.copy-clipboard-popup .modal-dialog {
  width: 210px;
}

.copy-clipboard-popup .modal-content {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  border: 2px solid #ab3275;
}

.copy-clipboard-popup .fas {
  font-size: 25px;
}
