/* OVERWRITE BOOTSTRAP STYLE */

/*
dark #28044e
primary #3b0672
tertiary #4e0999
secondary #620bbf
 */

.bg-tertiary {
    background-color: #4e0999;
}

.fg-primary {
    color: #3B0672;
}

.fg-secondary {
    color: #620bbf;
}

.fg-white {
    color: white;
}

.bg-dark {
    background-color: #28044E !important;
}

.bg-primary {
    background-color: #3B0672 !important;
}

.bg-secondary {
    background-color: #620BBF !important;
}

a {
    text-decoration: none;
    color: #3B0672;
}

a:hover {
    color: #28044E;
}

.btn-primary {
    background-color: #3B0672;
    border-color: #28044E;
}

.btn-tertiary {
    background-color: #4e0999;
    border-color: #28044E;
    color: white;
}

.btn-outline-primary {
    color: white;
}

.btn-outline-primary:hover {
    border-color: #3B0672 !important;
    color: white;
}

.btn:hover {
    background-color: #28044E;
    border-color: #28044E;
}

.btn:active {
    background-color: #28044E !important;
    border-color: #3B0672 !important;
}

.btn:disabled {
    background-color: silver;
    border-color: gray;
}

.form-group {
    margin-bottom: 10px;
}

.form-check-input:checked {
    background-color: #3B0672;
    border-color: #3B0672;
}

.navbar-brand a {
    color: white !important;
}


/* OWN STYLES */
.logged-in-content {
    display: none;
}

.navbar-top {
    border-bottom: 7px solid #3B0672;
}

#modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: none;
}

#modal-overlay > div {
    margin: 150px auto;
    z-index: 1001;
    width: 500px;
}

.text-right {
    text-align: right;
}

.cursor-pointer {
    cursor: pointer;
}

img.coverimage {
    width: 350px;
    height: 170px;
    border-radius: 5px;
}

img.achievementimage {
    width: 80px;
    height: 80px;
    border-radius: 5px;
}

#home-header {
    background-color: #3B0672;
    color: white;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

#home-explanation {
    text-align: center;
    width: 1200px;
    margin:auto;
}

#home-steps {
    width: 100%;
    height: 280px;
    margin-top: 30px;
}

.home-step {
    padding: 30px;
    background-color: white;
    color: black;
    border-radius: 10px;
    width: 300px;
    height: 280px;
    margin-left: 50px;
    margin-right: 50px;
    float: left;
}

.home-step div {
    font-size: 28pt;
}

.home-section {
    margin-top: 25px;
    background-color: #f3f3f3;
    border-top: 1px solid #28044e;
    border-bottom: 1px solid #28044e;
}

.listing-card {
    background-color: #3b0672 !important;
    color: white;
}

a.fg-white {
    color: white;
    text-decoration: underline;
}

a.fg-white:hover {
    color: #620bbf;
}

.contentpanel {
    background-color: #f3f3f3;
    padding: 20px;
    border-radius: 10px;
}

.hidden-info {
    background-color: #3B0672;
    color: rgba(0, 0, 0, 0);
    user-select: none;
    cursor: pointer;
    transition: background-color 1s, color 1s;
    border-radius: 5px;
}

.hidden-info-show {
    background-color: inherit !important;
    color: black;
    user-select: inherit;
}

#headerimage-bg {
    position: absolute;
    left: -5%;
    top: -50px;
    width: 110%;
    height: 500px;
    z-index: -1;
    filter: blur(40px);
}

#headerimage-fg {
    position: relative;
    width: 100%;
    height: 485px;
    max-width: 1000px;
}

#edit-game-urls-current > div {
    padding: 5px;
}

.unlockpercentage {
    display: inline-block;
    height: 10px;
    width: 100px;
    background-color: #28044E;
}

.unlockpercentage-fill {
    height: 100%;
    background-color: #620BBF;
}

.mandatory {
    color: red;
}

#tag-suggestions{
    border: 1px solid black;
    background-color: white;
    width: 100%;
}

.tag-suggestions-item {
    padding: 5px;
    cursor: pointer;
}

.tag-suggestions-item:hover {
    color: white;
    background-color: #3B0672;
}

.page-button {

}