html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.modal-header{
    background-color:lightsteelblue;
    max-height:35px;
}

/*div {
    margin: 10px;
    width: 200px;
    height: 200px;
    background-color: #67686b;
}
*/
.pattern1 {
    background-image: repeating-linear-gradient(36deg, rgba(255,255,255, 0.1), rgba(255,255,255, 0.1) 1px, transparent 0px, transparent 2px);
}

.pattern2 {
    background-image: repeating-linear-gradient(-45deg, rgba(255,255,255, 0.1), rgba(255,255,255, 0.1) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
}

.gradient-button {
    background-image: linear-gradient(to right, #7474BF 0%, #348AC7 51%, #7474BF 100%)
}
    .gradient-button:hover {
        box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
        /*margin: 8px 10px 12px;*/
        background-position: right center;
    }
.HideMe {
    display: none;
/*    transition: opacity 500 ease-in-out;*/
}
.btn-grad {
    background-image: linear-gradient(to right, #34e89e 0%, #0f3443 51%, #34e89e 100%);
    margin: 10px;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
/*    box-shadow: 0 0 20px #eee;*/
    border-radius: 10px;
    display: block;
}

    .btn-grad:hover {
        background-position: right center; /* change the direction of the change here */
        color: #fff;
        text-decoration: none;
    }
.btn-primary {
    background-color: #66ccff ;
    color: azure !important
}
.boxMe {
    background-color:lightgray
}