* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


button.mainbtn {
    width: 100%;
    height: auto;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgb(219, 219, 219);
    color: grey;
    background-color: rgb(248, 248, 248);
}

button {
    cursor: pointer;
}

img#logo {
    max-height: 100px;
    max-width: 100px;
}

.banner {
    background-color: rgb(199, 199, 199);
    width: 100%;
    height: fit-content;
    padding-top: 5px;
    padding-bottom: 5px; 
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: rgb(104, 104, 104);
    display: flex;
    font-size: larger;
}

.loading {
    background-image: url(/images/loading.gif);
    background-size: contain;
    background-repeat: no-repeat;
    margin: auto;
    background-position: center;
    width: 100%;
    height: 50px;
}

.errorimg {
    display: flex;
    max-width: 150px;
    max-height: 150px;
    margin: auto;
}

input#Search {
    padding: 20px;
    color: rgb(70, 70, 70);
    border-radius: 8px;
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(231, 231, 231) 100%);
    width: 400px;
}

input::placeholder {
    color: rgb(99, 99, 99);
    font-size: large;
    text-decoration: dotted;
}

.promotionalContentContainer {
    width: auto;
    display: flex;
    height: 300px;
}

.promotional-content {
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    animation: PromotionalContentFadeIn ease .5s;
    transition: cubic-bezier(0.645, 0.045, 0.355, 1);
    box-shadow: 0 0 50px inset rgb(75, 74, 74) ;
    height: 100%;
    width: 100%;
    object-fit: contain;
}

@keyframes PromotionalContentFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.Icon {
    mask-size: contain !important;
    mask-repeat: no-repeat !important;
    mask-position: 50% !important; 
    margin-top: 10px;
    margin-bottom: 10px;
}

.Icon#Medium {
    width: 70px;
    height: 70px;
    background: rgb(243, 113, 113)
}

.video {
    display: flex;
    justify-self: center;
    height: 100%;
    width: 80%;
}

.left ul {
    display: flex;
    justify-content: space-around;
    width: max-content;
}

.left ul li {
    width: 100%;
    margin: auto;
}


.header {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    height: 80px;
    align-items: center;
    background-color: rgb(243, 243, 243);
    font-size: larger;
}

.header .left {
    float: left;
    display: flex;
    width: 50%;
    align-items: center;
    height: 80px;
    justify-content: space-evenly;
    margin-left: 35px;
}

.header .right {
    float: right;
    width: 50%;
    text-align: center;
}
#headerbutton {
    width: 200px;
}

.SForumTopSection {
    margin: auto;
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 800px;
    height: 50px;
    background-color: rgb(243, 243, 243);
}

.SForumTopSection .right {
    width: 50%;
    display: flex;
    justify-content: space-evenly;
}

.CDAccountModal {
    background-color: rgb(243, 243, 243);
    border-radius: 10px;
    width: 300px;
    height: 100%;
    padding: 10px;
    text-align: center;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.CDAccountModal .buttonContainer {
    display: flex;
}

.CDAccountModal .CDAccountDetailPicture {
    width: 150px;
    height: 100px;
    background-color: rgb(128, 128, 128);
    mask: url(/images/email\ contact\ image.svg);
    mask-size: contain;
    mask-position: 50%;
    mask-repeat: no-repeat;
    margin: auto;
}

.CDAccountModal .ModalContent {
    text-align: center;
}

.ModalContent .DetailsContainer {
    margin-bottom: 10px;
    text-align: center;
}


.ModalContent .DetailsContainer ul li {
    color: rgb(160, 160, 160);
    text-align: left;
}
