/*
	 CSS-Tricks Example
	 by Chris Coyier
	 http://css-tricks.com
*/
h1 {
    margin-top: 10px;
    margin-bottom: 11px;
    font-size: 30px;
    font-weight: bold;
}

#page-wrap {
    text-align: center;
    max-width: 800px;
    margin: 25px auto;
}

#result {
    font-size: 45px;
    max-width: 600px;
    padding: 20px 30px;
    margin: 40px auto;
    border: 1px solid #fcb045;
    border-radius: 50px;
    background-color: #000;
    opacity: 0.3;
	white-space:nowrap;
    
}
@media only screen and (max-width: 600px) {
  #result {
   font-size: 6vw;
  }
}
#result.final{
    opacity: 1;
}

#result span {
    color: #fcb045;
    opacity: 1;
    display: block;
}
#result span a {
    color: #fcb045;
}

.mb-2 {
    margin-bottom: 10px;
}



body {
    background: linear-gradient(334deg, #5396c9, #0b3b7e, #06b4e9);
    background-size: 180% 180%;
    animation: gradient-animation 6s ease infinite;
    padding: 30px;
    color: #fff;
    text-align: center;
}

@keyframes gradient-animation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }


.btn-spin {
    background-color: rgb(171, 1, 1);
    border: none;
    color: #fff;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;

    padding: 14px 30px;
    border-radius: 50px;
    font-size: 18px;
    position: relative;
    box-shadow: 1px 1px 13px 1px rgba(0, 0, 0, 0.109);
}

.btn.btn-checked{
    background-color: rgb(0, 70, 131);
}

.btn-checked::after, .btn-checked::before {
    content: "";
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    transform-origin: 50% 50%;
}
.btn-checked::after {
    border: 1px solid #0056ff;
    z-index: 3;
    animation: zoom 1.3s infinite;
    animation-delay: 1.1s;
}
.btn-checked::before {
    background: rgba(22, 99, 255, 0.277);
    z-index: 1;
    animation: zoom 1.3s infinite;
}

.final{
    position: relative;
}
.final::after, .final::before {
    content: "";
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    transform-origin: 50% 50%;
}
.final::after {
    border: 1px solid #fcb045;
    z-index: 3;
    animation: zoom 1.3s infinite;
    animation-delay: 1.1s;
}
.final::before {
    background: rgba(252, 176, 69, 0.248);
    z-index: 1;
    animation: zoom 1.3s infinite;
}

.title {
    font-family: "Beau Rivage", cursive;
    font-weight: 400;
    font-style: normal;
    margin-top: 20px;
    font-weight: bold;
    font-size: 30px;
  }
  .campany{
    font-weight: bold;
    font-size: 20px;
  }

  @keyframes zoom {
    0% {
      transform: scale(0.9);
    }
  
    70% {
      transform: scale(1.2, 1.4);
      box-shadow: 0 0 0 15px transparent;
    }
  
    100% {
      transform: scale(0.9);
      box-shadow: 0 0 0 0 transparent;
    }
  }
  
  .config{
    border: 1px solid #fcb045;
    padding: 15px;
    margin: 15px;
    border-radius: 10px;
    display: none;
  }

  .config.show{
    display: block;
  }