.skeleton-loader {
  width: 100%;
  height: 15px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 80%
  ),
  #1763dc38;
  border-radius: 2px;
  background-repeat: repeat-y;
  background-size: 50px 500px;
  background-position: 0 0;
  animation: shine 1s infinite;	
}
.cy-template a.link{
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 26px;
  color: #1863DC;
}
.cy-template a.link:hover{
  text-decoration-line: underline;
  color: #1863DC;
}
.cy-template a.button:hover{
  text-decoration: none;
}
.cy-template a.link.external{
  padding-right: 25px;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cy-template a.link.external:after{
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  background-image: url(../../images/external-link-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  width: 15px;
}
.cy-template .pri-xl-btn,
.cy-template .pri-lg-btn,
.cy-template .pri-md-btn,
.cy-template .pri-sm-btn,
.cy-template button,
.cy-template input[type=submit] {
  border: 1.5px solid;
  border-radius: 4px;
  transition: all .2s ease;
  color: #FFFFFF;
  text-align: center;
  display: inline-block;
}
.cy-template .pri-xl-btn,
.cy-template .sec-xl-btn{
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  padding: 16px 24px;
}
.cy-template .pri-lg-btn,
.cy-template .sec-lg-btn,
.cy-template button,
.cy-template input[type=submit] {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  padding: 12px 24px;
  min-width: 140px;
}
.cy-template .pri-md-btn,
.cy-template .sec-md-btn{
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 21px;
  padding: 8px 24px;
}
.cy-template .pri-sm-btn,
.cy-template .sec-sm-btn{
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  padding: 6px 24px;
}
.cy-template .sec-sm-btn,
.cy-template .sec-md-btn,
.cy-template .sec-lg-btn,
.cy-template .sec-xl-btn{
  border: 1.5px solid;
  border-radius: 4px;
  transition: all .2s ease;
  text-align: center;
  display: inline-block;
}
.cy-template .pri-sm-btn:hover,
.cy-template .pri-md-btn:hover,
.cy-template .pri-lg-btn:hover,
.cy-template .pri-xl-btn:hover,
.cy-template .sec-sm-btn:hover,
.cy-template .sec-md-btn:hover,
.cy-template .sec-lg-btn:hover,
.cy-template .sec-xl-btn:hover,
.cy-template button:hover,
.cy-template input[type=submit]:hover{
  border: 1.5px solid ;
  transition: all .2s ease;
  outline: none;
  box-shadow: none;
  text-decoration: none;
}
.cy-template .button-group {
  margin-left: -12px;
  margin-right: -12px;
  display: inline-flex;
  align-items: center;
}
.cy-template .button-group>.button{
  display: inline-block;
  margin: 12px;
}
/* radius */
.cy-template .corner-small{
  border-radius: 4px;
}
.cy-template .corner-medium{
  border-radius: 8px;
}
.cy-template .corner-large{
  border-radius: 12px;
}
.cy-template .corner-round{
  border-radius: 50%;
}
.cy-template .minh-100{
  min-height: 100%;
}
.cy-template .overflow-hidden{
  overflow-x: hidden;
}
@media(max-width: 576px){
  .cy-template .button-group{
    display: block;
    margin: 0;
  }
  .cy-template .button-group>.button{
    display: block;
    width: 100%;
    margin: 12px 0;
  }
}
@keyframes shine {
  to {
    background-position: 100% 0, /* move highlight to right */ 0 0;
  }
}