@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&family=Oswald:wght@400;500&family=Roboto+Condensed:wght@300;400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;

    font-family: 'Lato', sans-serif;
    font-family: 'Oswald', sans-serif;
    font-family: 'Roboto Condensed', sans-serif;

    touch-action: manipulation;
}

button {
    pointer-events: auto;
}

.title {
    margin-top: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
}

body {
    overflow-x: hidden;
    background-color: white;
    text-align: center;
    background-image: url("../uploads/images/bg.jpg")
}

.item h2 {
    text-align: start !important;
}

button:active {
    border-style: outset;
}

.hide {
    opacity: 0.15;
    cursor: not-allowed !important;
}

video {
    width: 100%;
    height: auto;
}

.video_bottom_menu {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
}

.video_bottom_menu span {
    margin-top: 7px;
}

.video_bottom_menu_btn {
    background-color: white;
    color: black;
    font-size: 13px;
    padding: 8px;
    cursor: pointer;
    float: left;
    border: none;
    margin: 0px 20px 8px 20px;
    height: auto;
}

.nav {
    width: 100%;
    display: flex;
    align-content: center;
    background-color: #98f750;
    border-bottom: 4px solid black;
    margin-bottom: 20px;
    padding: 8px;
}

.nav a {
    display: block;
    margin: auto;
    height: 60px;
}

.nav a img {
    display: block;
    margin: auto;
    height: 60px;
}

.btn {
    width: 50%;
    font-size: 18px;
    font-weight: bold;
    color: black;
    background-color: #98f750;
    padding: 4px;
    border: none;
    margin-bottom: 20px;
}

.content {
    display: block;
    margin: auto;
    padding: 20px;
    width: 85%;
    /*border-radius: 5px;*/
    max-width: 1000px;
}

.undo_btn {
    background-color: #98f750;
    color: black;
    font-size: 1em;
    padding: 12px;
    font-weight: bold;
    margin: 20px 10px 0px 0px;
    cursor: pointer;
    float: left;
    border: none;
    /*border-radius: 10px;*/
    margin-bottom: 8px;
}

.content .item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background-color: #98f750;
    /*border-radius: 10px;*/
    margin-bottom: 20px;
    cursor: pointer;
}

.bg-none {
    background-color: white !important;
    padding: 0px !important;
}

.content .item h2 {
    color: black;
}

.content .item button {
    width: 30%;
    border: none;
    background-color: transparent;
}

.content .item:last-child {
    margin-bottom: 0px;
}

@media only screen and (max-width: 800px) {
    .content {
        width: 100%;
    }
}