@import "base-fonts.css";

.buttonMe {
    border: 4px solid #c4c4c4;
    border-radius: 5px;
    background: #191919;
    color: #c4c4c4;
    padding: 4px 8px;
    cursor: pointer;
    text-decoration: none;
}
.buttonMe:hover {
    border-color: #101010;
    background: #b7b7b7;
    color: #101010;
}

.lightButtonMe {
    border: 1px solid;
    border-radius: 30px;
    padding: 2px 6px;
    cursor: pointer;
}
.lightButtonMe:hover {
    background: #808080;
    color: #fff;
    border-color: #808080;
}

.transition,
.smooth {
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.floatMeLeft {
    float: left;
}
.floatMeRight {
    float: right;
}

.smallFont {
    font-size: 12px;
}

.hideMe {
    display: none;
}

.transparentMe {
    color: transparent;
    background: transparent;
    border-color: transparent;
}

.popOut_btn {
    background: #3a3a3a;
    padding: 5px 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    line-height: 28px;
    cursor: pointer;
}
.popOut_btn:hover {
    background: #6f6f6f;
}

.popOut_overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.65);
    z-index: 11;
    display: none;
}
.popOut_overlay.active {
    display: block;
}
.popOut_content {
    background: #8c8c8c;
    border: 5px solid #4c4c4c;
    border-radius: 10px;
    position: relative;
    z-index: 13;
    width: 600px;
    min-height: 200px;
    margin: 10% auto;
    padding: 15px;
}
.popOut_header {
    width: 100%;
    background: #c7c7c7;
    padding: 5px 0;
    font-size: 20px;
    color: #4c4c4c;
    border-radius: 5px;
}