  /* mymodal: */

  .mymodal-open {
    overflow: hidden;
  }
  
  .mymodal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
  }
  .mymodal.fade .mymodal-dialog {
    transform: translate(0, -25%);
    transition: transform 0.3s ease-out;
  }
  .mymodal.in .mymodal-dialog {
    transform: translate(0, 0);
  }
  
  .mymodal-open .mymodal {
    overflow-x: hidden;
    overflow-y: auto;
  }
  
  .mymodal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
  }
  
  .mymodal-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    outline: 0;
  }
  
  .mymodal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
  }
  .mymodal-backdrop.fade {
    filter: alpha(opacity=0);
    opacity: 0;
  }
  .mymodal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: 0.5;
  }
  
  .mymodal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
  }
  .mymodal-header:before, .mymodal-header:after {
    display: table;
    content: " ";
  }
  .mymodal-header:after {
    clear: both;
  }
  
  .mymodal-header .close {
    margin-top: -2px;
  }
  
  .mymodal-title {
    margin: 0;
    line-height: 1.6;
  }
  
  .mymodal-body {
    position: relative;
    padding: 15px;
  }
  
  .mymodal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
  }
  .mymodal-footer:before, .mymodal-footer:after {
    display: table;
    content: " ";
  }
  .mymodal-footer:after {
    clear: both;
  }
  .mymodal-footer .btn + .btn {
    margin-bottom: 0;
    margin-left: 5px;
  }
  .mymodal-footer .btn-group .btn + .btn {
    margin-left: -1px;
  }
  .mymodal-footer .btn-block + .btn-block {
    margin-left: 0;
  }
  
  .mymodal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
  }
  
  @media (min-width: 768px) {
    .mymodal-dialog {
      width: 600px;
      margin: 30px auto;
    }
  
    .mymodal-content {
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }
  
    .mymodal-sm {
      width: 300px;
    }
  }
  @media (min-width: 992px) {
    .mymodal-lg {
      width: 900px;
    }
  }
  
  /* The mymodal (background) */
  .mymodal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 20%;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: grey
    /* rgba(39, 38, 59, 0.5); */
  }
  
  /* mymodal Content */
  
  .mymodal-content {
    background-color:grey;
    color:white;
    /* background-color: #fefefe; */
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
  }
  
  .sk-chase {
    width: 40px;
    height: 40px;
    position: relative;
    -webkit-animation: sk-chase 2.5s infinite linear both;
            animation: sk-chase 2.5s infinite linear both;
  }
  
  .sk-chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: sk-chase-dot 2s infinite ease-in-out both;
            animation: sk-chase-dot 2s infinite ease-in-out both;
  }
  
  .sk-chase-dot:before {
    content: "";
    display: block;
    width: 25%;
    height: 25%;
    background-color: rgba(48, 151, 209, 0.6);
    border-radius: 100%;
    -webkit-animation: sk-chase-dot-before 2s infinite ease-in-out both;
            animation: sk-chase-dot-before 2s infinite ease-in-out both;
  }
  
  .sk-chase-dot:nth-child(1) {
    -webkit-animation-delay: -1.1s;
            animation-delay: -1.1s;
  }
  
  .sk-chase-dot:nth-child(2) {
    -webkit-animation-delay: -1s;
            animation-delay: -1s;
  }
  
  .sk-chase-dot:nth-child(3) {
    -webkit-animation-delay: -0.9s;
            animation-delay: -0.9s;
  }
  
  .sk-chase-dot:nth-child(4) {
    -webkit-animation-delay: -0.8s;
            animation-delay: -0.8s;
  }
  
  .sk-chase-dot:nth-child(5) {
    -webkit-animation-delay: -0.7s;
            animation-delay: -0.7s;
  }
  
  .sk-chase-dot:nth-child(6) {
    -webkit-animation-delay: -0.6s;
            animation-delay: -0.6s;
  }
  
  .sk-chase-dot:nth-child(1):before {
    -webkit-animation-delay: -1.1s;
            animation-delay: -1.1s;
  }
  
  .sk-chase-dot:nth-child(2):before {
    -webkit-animation-delay: -1s;
            animation-delay: -1s;
  }
  
  .sk-chase-dot:nth-child(3):before {
    -webkit-animation-delay: -0.9s;
            animation-delay: -0.9s;
  }
  
  .sk-chase-dot:nth-child(4):before {
    -webkit-animation-delay: -0.8s;
            animation-delay: -0.8s;
  }
  
  .sk-chase-dot:nth-child(5):before {
    -webkit-animation-delay: -0.7s;
            animation-delay: -0.7s;
  }
  
  .sk-chase-dot:nth-child(6):before {
    -webkit-animation-delay: -0.6s;
            animation-delay: -0.6s;
  }
  
  @-webkit-keyframes sk-chase {
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes sk-chase {
    100% {
      transform: rotate(360deg);
    }
  }
  @-webkit-keyframes sk-chase-dot {
    80%, 100% {
      transform: rotate(360deg);
    }
  }
  @keyframes sk-chase-dot {
    80%, 100% {
      transform: rotate(360deg);
    }
  }
  @-webkit-keyframes sk-chase-dot-before {
    50% {
      transform: scale(0.4);
    }
    100%, 0% {
      transform: scale(1);
    }
  }
  @keyframes sk-chase-dot-before {
    50% {
      transform: scale(0.4);
    }
    100%, 0% {
      transform: scale(1);
    }
  }
  