  .btn-default:hover {
    background: rgba(3, 165, 81, 0.63);
    color: #fff;
    border: 2px solid rgba(3, 165, 81, 0.63);
  }

  body .modal-dialog {
    position: absolute;
    min-height: 100%;
    min-width: 100%;
  }

  body .modal-content .modal-footer button {
    font-family: "Martel Sans", sans-serif;
    width: 160px;
    /* background: rgba(3, 165, 81, 0.63);*/
    background: rgb(102, 171, 199);
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 500ms;
  }

  body .modal-content {
    font-family: "Martel Sans", sans-serif;
    font-size: 14px;
    background-color: white;
    z-index: 2;
    will-change: transform;
    position: absolute;
    top: 60px;
    
    margin: auto;
    width: 70vw;
    height: auto;
    transform: scaleX(0);
    opacity: 0;
    /*border: 1px solid #cecece;*/
    transition: all 300ms cubic-bezier(0.72, 0.91, 0.35, 1.2);
  }
  body .modal-content .modal-header {
    min-height: 40px;
    padding: 47px 0px 39px 20px;
    border-bottom: 1px solid #cecece;
    background: linear-gradient(rgba(0,50,100,0.6),rgba(0,0,0,0.5)), rgb(0, 60, 111);
    font-size: 31px;
    color: #fff;
    font-weight: 600;
    /*margin-left: 2%;*/
  }
  body .modal-content .modal-header .close-modal {
    position: absolute;
    padding: 10px;
    right: 0;
    top: 5px;
    cursor: pointer;
    font-size: 1.5em;
    transition: all 500ms;
    user-select: none;
  }
  body .modal-content .modal-header .close-modal:hover {
    transform: rotate(180deg);
  }
  body .modal-content .modal-body {
    height: 60vh;
    padding: 40px 0px;
    overflow: auto;
  }
  body .modal-content .modal-footer {
    height: 60px;
    width: 100%;
    text-align: center;
    line-height: 2.5;
    border-top: 1px solid #cecece;
  }
  

  /* Class Utils Modal*/
  .opened {
    transform: scaleX(1) !important;
    opacity: 1 !important;
  }

  .closed {
    transform: scaleX(0) !important;
    opacity: 0 !important;
  }

  /* Scrollbar Color*/
  .modal-body::-webkit-scrollbar {
    width: .5em;
  }
  .shiny-button {
    position: relative;
    display: block;
    float: none;
    margin: 0 auto;
    color: white;
    width: 200px;
    height: 80px;
    font-size: 30px;
    border-radius: 10px;
    border: 2px solid #56616c;
    background: -webkit-linear-gradient(#6C7A89, #333);
    background: linear-gradient(#6C7A89, #333);
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.35);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    text-align: center;
    overflow: hidden;
  }
  .shiny-button:focus {
    outline: none;
  }
  .shiny-button:active {
    margin: 5px auto 0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.15);
  }
  .shiny-button::before {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    content: "";
    height: 20px;
    width: 400px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
    -webkit-animation-name: shine;
    animation-name: shine;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: cubic-beizer(0.17, 0.79, 0.96, 0.25);
    animation-timing-function: cubic-beizer(0.17, 0.79, 0.96, 0.25);
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }
  @-webkit-keyframes shine {
    0% {
      top: -100px;
      left: -280px;
    }
    100% {
      top: 100%;
      left: 100%;
    }
  }
  @keyframes shine {
    0% {
      top: -100px;
      left: -280px;
    }
    100% {
      top: 100%;
      left: 100%;
    }
  }