﻿/* scroll personalizzato */
/* width */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #440f1d;
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: #b19765;
    border-radius: 10px;
}

    /* Handle on hover */

    ::-webkit-scrollbar-thumb:hover {
        background: #b19765;
    }


:root {
    --background-color: #1A1E23;
    --bordeaux-color: #440f1d; /*bordeaux*/
    --gold-color: #b19765; /*gold*/
    --white-color: #fff; /*white*/
}


body {
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-family: "PT Sans", sans-serif;
    background-color: var(--background-color);
    overflow-x: hidden;
}

.wrapper-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.wrapper {
    width: 85%;
    max-width: 1920px;
    margin: 110px auto;
}

    a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

    a:hover {
        color: #b19765!important;
        text-decoration: none;
    }

.nav-link {
    font-size: 14px;
    color: white;
    font-weight: bold;
    text-decoration: none;
}

    .nav-link :hover {
        color: #b19765 !important;
        text-decoration: none;
    }

.active {
    color: #b19765!important;
}

.title {
    font-size: 25px;
    font-weight: bold;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 0px 5px rgb(0, 0, 0);
}

.logo {
    width: 189px;
    height: 35px;
}



/**************************Bottoni************************/
.btn {
    border-radius: 6px;
    color: #ffffff;
    background: #b19765;
    padding: 9px 21px 10px 20px;
    text-decoration: none;
    outline:none;
}

    .btn:focus
    .btn:active{
        outline: none;
        box-shadow: none;
    }


.btn-margin {
    margin-left: 15px;
}

.btn-propiety {
    border: transparent;
    height: 38px;
    width: 97px;
    border: 1px solid #b19765;
    outline: none;
}

    .btn-propiety:hover {
        background-color: #b19765;
        color: #440f1d;
    }

    .btn-propiety:focus, 
    .btn-propiety:active {
        outline: none;
        background-color: #b19765;
        color: #440f1d;
    }

.btn-medium {
    border: transparent;
    color: white;
    height: 40px;
    width: 150px;
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid #b19765;
    padding: 10px;
    outline: none;
}

.btn-medium:hover {
    background-color: #b19765;
    color: #440f1d;
}

    .btn-medium:active, 
    .btn-medium:focus {
        outline: none;
        box-shadow: none;
    }

.btn-small {
    border: transparent;
    color: white;
    height: 30px;
    width: 84px;
    font-size: 13px;
    border-radius: 10px;
    border: 1px solid #b19765;
    padding: 5px;
    background-color: var(--gold-color);
}

    .btn-small:focus {
        outline: none;
    }

    .btn-small:hover {
        color: #440f1d;
    }

.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
    background-color: #b19765;
    color: #440f1d;
    outline: none;
    box-shadow: none;
    border: 1px solid #b19765;
}

.btn_bordeaux {
    background-color: var(--bordeaux-color); /*bordeaux*/
}

    .btn_bordeaux:hover {
        background-color: var(--bordeaux-color);
        color: var(--gold-color);
        border: 1px solid var(--gold-color);
    }


/****************per Icone*******************************/
.fa-chess {
    color: #b19765;
}

.far, .fas {
    color: #b19765;
}

/**/
.margin10 {
    margin-top: 10px;
}

.margin20 {
    margin-top: 20px;
}

.margin40 {
    margin-top: 40px;
}

/**/

.games_container {
    margin-top: 10px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.games_area {
    padding-bottom: 70px;
}