﻿.divVisible{
    display: none;
}
.divFull {
    width: 100%;
}
.divHalf {
    width: 50%;
    float: left !important;
}
.divBeside {
    margin-left: 50%;
}
.showPointer {
    cursor: pointer;
    padding-left: 3px;
    color: #000;
    background-color: #fff;
    display: inline-block;
    width: 200px;
}
.spanActive {
    cursor: pointer;
    padding-left: 3px;
    color: #fff;
    font-weight: bold;
    background-color: dodgerblue;
    display: inline-block;
    width: 200px;
}
.redBold {
    font-weight: bold !important;
    color: red !important;
}
.elitDivLinks {
    background-color: #ee10ee !important;
    padding-top: 2px;
    padding-bottom: 2px;
}

ul.elitLinks {
    list-style-type: none;    
}
    ul.elitLinks > li {
        display: inline-block;
        padding-left: 10px;
        font-weight: 400;
    }

    ul.elitLinks > li a {
        text-decoration: none;
        color: white;
    }
    ul.elitLinks > li a:hover {
        text-decoration: underline;
    }
.elitAnswer {
    color: red;
    font-weight: bold;
}
#travBox {
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
}

    #travBox.hide {
        opacity: 0;
        pointer-events: none;
        transform: scale(0.8);
        transition: all 0.3s ease;
    }

::selection {
    color: #fff;
    background: #229a0f;
}

#travContent p {
    color: #858585;
    margin: 5px 0 10px 0;
}

#travContent .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.consentButton,
.rejectButton {
    padding: 12px 30px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.consentButton {
    background: #2a910b;
    margin-right: 10px;
}

.rejectButton {
    color: #111211;
    background: transparent;
    border: 2px solid #099c2c;
    text-decoration: none;
}

#travHeader {
    font-size: 15px;
    font-weight: 600;
    margin-top: 2px;
}


