/* Custom classes */

.menu-btn {
    height: 50px;
    width: 50px;
    text-align: center;
    cursor: pointer;
}

/* Centering classes - parent must be relative. Set height and width for best results. */

.center-vertical {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.center-horizontal {
    top: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulse {
    /* margin:100px;
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #cca92c; */
    cursor: pointer;
    animation: pulse 2s infinite;
}

.pulse.active {
    -moz-box-shadow: 0 0 0 15px rgba(57, 218, 57, 0.6);
    box-shadow: 0 0 0 15px rgba(57, 218, 57, 0.6);
    animation: none;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(57, 218, 57, 0.1);
    }
    70% {
        -webkit-box-shadow: 0 0 0 15px rgba(57, 218, 57, 0.6);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(57, 218, 57, 0.0);
    }
}
@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(57, 218, 57, 0.1);
        box-shadow: 0 0 0 0 rgba(57, 218, 57, 0.1);
    }
    70% {
        -moz-box-shadow: 0 0 0 15px rgba(57, 218, 57, 0.6);
        box-shadow: 0 0 0 15px rgba(57, 218, 57, 0.6);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(57, 218, 57, 0.0);
        box-shadow: 0 0 0 0 rgba(57, 218, 57, 0.0);
    }
}

/* Fonts */

@font-face {
    font-family: 'Tilt';
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/TiltRegular.otf") format("opentype");
}

@font-face {
    font-family: 'TiltBlack';
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/TiltBlack.otf") format("opentype");
}

/* General overrides */

/* p, span, h1, h2, h3, h4, h5, body */
.brand-logo {
    font-family: 'Tilt';
    /* font-family: "Open Sans", sans-serif; */
}

html {
    color: #333F48;
    background-color: #BEC6C4; 
}

label {
    color: #333F48;
    opacity: 0.8;
    font-size: 1rem;
    font-style: italic;
}

/* Materialize overrides */

.btn,.btn-large,.btn:hover,.btn-large:hover {
    background-color: #F1B434;
    color: #333F48;
}

.collection a.collection-item {
    color: #BEC6C4;
}

.card {
    padding: 15px;
}