﻿@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Nunito:400,700');

body {
    background-color: #f5f5f5 !important;
    font-family: 'Nunito', sans-serif !important;
}

.is-right {
    float: right;
}

.is-borderless {
    border: none !important;
}

.navbar-burger:hover {
    background-color: transparent !important;
}

@media (max-width: 420px) {
    .hero .hero-body .box {
        box-shadow: none;
    }
}

@media (min-width: 420px) {
    .hero .hero-body .box {
        padding: 3rem;
    }
}

.fa-google {
    background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg) 73% 55%/150% 150% no-repeat;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.validation-summary-errors {
    background-color: #f14668;
    color: #fff;
    border-radius: 4px;
    position: relative;
    padding: 10px 0;
    margin-bottom: 20px;
}

.validation-summary-errors>ul {
    list-style: none;
    margin: 5px 15px;
}

.menu-list {
    list-style: none !important;
}

.validation-summary-valid>ul {
    list-style: none !important;
}

/*.social-icon {*/
/*    font-size: 20px;*/
/*    display: block;*/
/*    width: 100%;*/
/*}*/

/*    .social-icon > i {*/
/*        font-size: 18px !important;*/
/*    }*/

/* Divider on login/signup page*/
.flex-line {
    flex: 1;
    border: none;
    border-top: 1px solid #ccc;
    /* line color */
}

hr.flex-line {
    margin-top: 0.7rem;
}

/* authentification input field */
.password-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #dbdbdb;
    /* Bulma input border */
    border-radius: 4px;
    background: #fff;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.password-input {
    border: none;
    flex: 1;
    height: 2.5em;
    /* same as Bulma input */
    font-size: 1.25rem;
    outline: none;
    padding: 0 .75rem;
    width: 100%;
    min-width: 0; /* prevents flex item overflow */
    box-sizing: border-box;
}

.password-toggle {
    cursor: pointer;
    color: #7a7a7a;
    margin-left: 5px;
    margin-right: 5px;
}

.password-input::placeholder {
    color: #cacaca; /* your desired color */
    opacity: 1; /* make sure it’s fully visible */
    font-weight: 400
}

.email-input::placeholder {
    color: #cacaca; /* your desired color */
    opacity: 1; /* make sure it’s fully visible */
    font-weight: 400
}

.button.is-fullwidth {
    height: 100%;
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal; /* allows text to wrap instead of overflow */
}