button {
    background-color: #8603d3;
    color: white;
    border-radius: 40px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    width: 150px;
    height: 50px;
    margin: 10px;
    flex-shrink: 0;
}

button:hover {
    opacity: .5;
}

@media(max-width: 549px)
{
    button {
        width: 90%;
    }
}

.default-border {
    border: 2px solid #8603d3;
    border-radius: 12px;
}


input.checkbox-default {
    width: 25px;
    height: 25px;
    accent-color: #8603d3;
}

input.checkbox-default:hover {
    cursor: pointer;
}

footer {
    clear: both;
    position: relative;
    height: 60px;
    margin-top: -60px;
}

html {
  font-size: 16px;
}

@media (min-width: 768px) {
  html {
    font-size: 18px;
  }
}

.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;
}

.full-window {
    width: 100%;
    height: 100%;
    padding: 12px;
    display: flex;
    flex-direction: column;
}


html {
  min-height: 100%;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: fixed;
}

.default-border {
    border: 2px solid #8603d3;
    border-radius: 12px;
}

.default-confirmation-modal, .default-modal {
    padding: 12px;
    display: flex;
    justify-content: center;
    background-color: white;
    flex-shrink: 0;
    text-align: center;
    border: 2px solid #8603d3;
    border-radius: 12px;
    margin: 10px;
    position: fixed;
}

.default-svg-color {
    filter: invert(15%) sepia(99%) saturate(6548%) hue-rotate(279deg) brightness(83%) contrast(111%);
}

.default-modal {
    min-height: 500px;
}

.default-confirmation-modal {
    height: fit-content;
    flex-direction: column;
    justify-content: space-around;
}

.default-toast-notification {
    border: 2px solid #8603d3;
    background-color: white;
    border-radius: 12px;
    width: 350px;
    height: 165px;
    flex-shrink: 0;
    justify-content: center;
    display: grid;
    padding: 12px;
    position: absolute;
    top: 20%;
}

.modal-subheader-text-default {
    color: #8603d3;
    font-style: italic;
    font-size: 22px;
    position: fixed;
    top: 20%;
    object-fit: contain;
    width: 90%;
    text-align: center;
    display: block;
}

.modal-header-default {
    position: relative;
    display: flex;
    width: 100%;
    height: 25%;
    justify-content: center;
    margin-bottom: 15px;
}

.new-subject-property-container {
    background-color: white;
    margin: 12px;
    width: 50%;
}

@media(min-width: 550px) {
    .default-modal {
        width: 500px;
    }

    .default-confirmation-modal { width: 500px; }

    .modal-footer-default {
        display: flex;
        position: relative;
        text-align: center;
        margin-bottom: 20px;
        justify-content: center;
        width: 100%;
        bottom: 0;
    }

}@media(max-width: 549px) {

     button {
         width: 90%;
         justify-self: center;
     }

     .default-modal {
         width: 95%;
         height: 80%;
     }
     .default-confirmation-modal {
         height: 225px;
         width: 90%;
     }

    .modal-footer-default {
        display: flex;
        flex-direction: column-reverse;
        position: relative;
        text-align: center;
        margin-bottom: 0;
        justify-content: center;
        width: 100%;
        bottom: 0;
        align-items: center;
    }

     .modal-subheader-text-default {
         top: 15%;
     }

     .navbar-toggler {
         width: 50px;
     }


     .new-subject-property-container {
         width: 100%;
     }
 }

@media(max-height: 474px) {
    .default-modal {
        height: 100%;
        width: 100%;
        border: unset;
        border-radius: unset;
    }
}

.default-modal-text {
    color: #8603d3;
    margin-top: 20px;
}

form {
    display: grid;
    justify-content: center;
    grid-template-columns: 100%;
}



.confirmation-modal {
    height: 175px;
    padding: 12px;
}

.button-footer {
    justify-content: right;
    width: 100%;
    display: flex;
}


.footer {
    position: absolute;
    bottom: 0px;
    background: white;
    width: 100%
}

.magic-wand-logo {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.main-background-image {
    background-image: url(../Images/mainbackground-min.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100vh;
    background-attachment: fixed;
    background-color: #464646;
}

.modal-container-default {
    display: flex;
    justify-content: center;
    text-align: center;
    z-index: 9999;
}

.modal-header-logo {
    width: 95%;
    object-fit: contain;
    position: absolute;
    top: 0;
    display: block;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
}

.icon-button {
    background-color: white;
    color: #8603d3;
    border-style: solid;
    border-color: #8603d3;
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

input {
    border-radius: 12px;
    margin: 10px;
    text-align: center;
    width: 100%;
    height: 40px;
    justify-self: center;
    display: block;
}

.input-validation-error-text {
    font-size: 14px;
    color: red;
    display: block;
}

a, p, span, button, option, select, label  {
    font: 16px "Lato", sans-serif;
    font-size: 16px;
}
a, p, span, h1, h2, h3, h4 {
    color: #8603d3;
}

.secondary-button {
    background-color: white;
    color: #8603d3;
    border-style: solid;
    border-color: #8603d3;
}

select {
    margin: 10px;
    border-radius: 12px;
    border: 2px solid black;
    width: 100%;
    height: 40px;
    text-align: center;
}



.horizontal-center {
    margin: 0;
    position: absolute;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.validated-input-default {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 85%;
    justify-self: center;
}
.vertical-center {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

form {
    align-content: center;
}