body {
    padding: 0;
    margin: 0;
}
.btn-primary-yellow{
    background-color: #F7e700 !important;
    border-style: solid !important;
    border-width: 1px !important;
    border-color: black !important;
    border-radius: 50% !important;
}
.btn-default-grey{
    z-index: 1 !important;
    background-color: #E4e4e4;
    border-radius: 50% !important;

}

.border-grey{
    border-color: #E4e4e4;
}
.border-red{
    border-color: red;
}
.display-none{
    display: none !important;
}
.display-flex{
    display: flex;
}

.font-montserrat {
    font-family: 'Montserrat', sans-serif;
    font-weight: 1;
}
.font-bold{
    font-weight: 700;
}
.font-1point5{
    font-size: 1.5rem;
}

.flex-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-container {
    background-color: rgba(0, 0, 0, 1);
    padding: 0.5rem;
}

.logo {
    height: 5vh;
}

.footer-yellow-container {
    background-color: #F7e700;

}

.footer-icons-container {
    display: none;
}

.mobile-hidden {
    display: initial;
}

.footer-companyname {
    font-size: 1.75rem;
    text-align: center;
    line-height: 1.5;
}

.footer-whyus {
    display: none;
}

.readmore-button {
    display: none;
}

.readmore-button:hover {
    background-color: black;
    color: #F7e700;
    cursor: pointer;
}

.footer-art {
    width: 80%;
    height: auto;
}

.footer-links-container {
    display: grid;
    padding: 1rem;
    grid-template-columns: repeat(2, 1fr);
}

.footer-links-column {
    text-align: center;
    margin: 0;
    padding: 0 0;
}

.footer-links-groupheading {
    margin: 0.5rem 0;
    font-weight: 600;
    font-size: 1.25rem;
}

ul {
    line-height: 1.5rem;
    font-size: 0.75rem;
}

.footer-copywright {
    font-size: 0.5rem;
    text-align: center;
    color: white;
    padding: 0.5rem;
}

.user-dropdown-container {
    position: absolute;
    right: 0;
    display: inline;

}

.user-dropdown-content {
    display: none;
    position: relative;
    top: 35px;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.user-dropdown-container:hover .user-dropdown-content {
    display: inline;
}

.user-dropdown-item {
    padding: 8px 16px 8px 16px;
    border-style: none none solid none;
    border-color: #E4e4e4;
    border-width: 1px;
}

.user-dropdown-item:hover {
    padding: 16px;
}

.bg-black {
    background-color: rgb(0, 0, 0, 0.8);
    transition: all 0.1s ease-in;

}

.bg-transparent {
    background-color: transparent;
    transition: all 0.1s ease-in;
}

.bg-yellow {
    background-color: #F7e700;
    transition: all 0.1s ease-in;
}
.header-link{
    margin: 0 0.5rem;
    font-weight: 500;
    display: block;
}
.header-link:hover{
    text-decoration: none !important;
}
.opacity-zero {
    opacity: 0;
    transition: opacity 0.1s ease-in;
}

.opacity-one {
    opacity: 1;
    transition: opacity 0.1s ease-in;

}
.color-white{
    color: white !important;
}
.color-black{
    color: black;
}
.social-button{
    padding: 0.75rem 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    border-radius: 5px;
    margin-bottom: 0.5rem;
}
.auth-container{
    width: 100%;
    text-align: center;
}
.supplier-heading{
    font-size: 36px;
    text-align: center;
    margin: 100px 16px 40px 16px;
    font-weight: 700;
}
.supplier-description{
    width: 90%;
    margin: 20px auto;
    font-size: 16px;
    text-align: center;
    line-height: 2;
}
#header{
    display: none;
}
#header-mobile{
    display: block;
}
#header-mobile-grid{
    display: grid;
    grid-template-columns: max-content 1fr max-content;
}
#hamburger-button{
    background-color: transparent;
    width: max-content;
}
@media only screen and (min-width: 768px) {
    #header{
        display: flex;
    }
    #header-mobile{
        display: none;
    }
    .header-link{
        margin: 0 1rem;
        display: inline;
    }
    .footer-icons-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin: 2rem 0;
        width: 70%
    }

    .footer-whyus {
        display: initial;
        font-size: 1.5rem;
        margin: 1rem;
    }

    .footer-companyname {
        font-size: 2.5rem;
        margin: 0;
        line-height: 1;
    }

    .readmore-button {
        display: initial;
        width: max-content;
        padding: 0.5rem;
        border: 1px solid black;
        border-radius: 2rem;
    }

    .footer-art {
        width: 70%;
    }

    .footer-links-container {
        padding: 2rem 0;
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-links-groupheading {
        margin: 1rem 0;
        font-size: 2rem;
    }

    ul {
        line-height: 2.5rem;
    }

    .footer-copywright {
        font-size: 0.75rem;
        padding: 1rem;
    }

    #signin-container{
        width: 50%;
        margin: auto;
    }
    #signup-container{
        width: 50%;
        margin: auto;
    }
    .social-button{
        display: inline-block;
        margin-right: 0.5rem;
    }
    .social-button:hover{
        cursor: pointer;
        background-color: hsl(0,0%,95%);
    }
    .auth-container{
        width: 70%;
        margin: auto;
    }
    .supplier-description{
        width: 70%;
    }
    .supplier-heading{
        font-size: 42px;
        margin: 120px 0 60px 0;
    }
}

/* form CSS */
html, body {
    min-height: 100%;
}

body, div, form, input, select, p {
    padding: 0;
    margin: 0;
    outline: none;
    font-family: Roboto, Arial, sans-serif;
    font-size: 14px;
    line-height: 22px;
}

form p {
    color: #524f4f;
}

h1 {
    margin: 15px 0;
    font-weight: 400;
}

.testbox {
    display: flex;
    justify-content: center;
    align-items: center;
    height: inherit;
    padding-left: 15%;
    padding-right: 15%;
    padding-top: 5%;
    padding-bottom: 5%;

}

.organization-testbox {
    padding-right: 10%;
    padding-left: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: inherit;
    margin-bottom: 5vh;
}

@media only screen and (max-width: 600px) {
    .testbox {
        padding-left: 0;
        padding-right: 0;
    }

    .organization-testbox{
        padding-left: 0;
        padding-right: 0;
    }
}

form {
    width: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

input, select, textarea {
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

input, select {
    width: calc(100% - 10px);
    font-size: 12px;
    padding: 6px;
}

select {
    width: 100%;
    padding: 7px 0;
    background: transparent;
}

textarea {
    width: calc(100% - 6px);
}

.item {
    position: relative;
    margin: 10px 0;
}

.item:hover p, .item:hover i {
    color: #095484;
}

input:hover, select:hover, textarea:hover, .preferred-metod label:hover input {
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);

}

.preferred-metod label {
    display: block;
    margin: 5px 0;
}

.preferred-metod:hover input {
    box-shadow: none;
}

.preferred-metod-item input, .preferred-metod-item span {
    width: auto;
    vertical-align: middle;
}

.preferred-metod-item input {
    margin: 0 5px 0 0;
}

input[type="date"]::-webkit-inner-spin-button {
    display: none;
}

.item i, input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    font-size: 20px;
    color: #a9a9a9;
}

.item i {
    right: 1%;
    top: 30px;
    z-index: 1;
}

[type="date"]::-webkit-calendar-picker-indicator {
    right: 0;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
}

.btn-block {
    margin-top: 20px;
    text-align: center;
}

.btn-block-success {
    text-align: center;
    margin-right: 30%;
    margin-left: 30%;
    margin-top: 40px;
}

.btn-block-success button {
    font-size: 12px;
}

#btn-align-left {
    float: left;
}

#btn-align-right {
    float: right;
}

@media only screen and (max-width: 800px) {
    #btn-align-left {
        float: none;
    }
    #btn-align-right {
        float: none;
    }

    .btn-block-success {
        align-content: center;
        margin-left: 0;
        margin-right: 0;
    }
}


button {
    width: 150px;
    padding: 10px;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #000;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}

button:hover {
    background-color: #F7e700;
    color: black;
}

@media (min-width: 568px) {
    .name-item, .city-item {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .name-item input, .city-item input {
        width: calc(50% - 20px);
    }

    .city-item select {
        width: calc(50% - 8px);
    }
}

html {
    -webkit-font-smoothing: antialiased;
}

.band {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-gap: 20px;

}

@media only screen and (min-width: 500px) {
    .band {
        grid-template-columns: 1fr 1fr;
    }

    .item-1 {
        grid-column: 1/ span 2;
    }

    .item-1 h1 {
        font-size: 30px;
    }
}

@media only screen and (min-width: 850px) {
    .band {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

/* card */

.card {
    min-height: 100%;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #444;
    position: relative;
    top: 0;
    transition: all .1s ease-in;
}

.card:hover {
    top: -2px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.card article {
    padding: 20px;
    display: flex;

    flex: 1;
    justify-content: space-between;
    flex-direction: column;

}

.card .thumb {
    padding-bottom: 60%;
    background-size: cover;
    background-position: center center;
}

.card p {
    flex: 1; /* make p grow to fill available space*/
    line-height: 1.4;
}

.card:hover {
    color: black;
}

/* typography */
article h1 {
    /* For card headings on home page */
    font-size: 20px;
    margin: 0;
    color: #333;
}

form h1 {
    font-weight: 300;
}

.card span {
    font-size: 12px;
    font-weight: bold;
    color: #999;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin: 2em 0 0 0;
}


/* Form front image styles */

.form-front {
    height: 60vh;
    width: 100%;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ======================== */
/* FORM VALIDATOR CSS STYLE */
/* ======================== */

.form-input-error-msg {
    display: block;
    padding: 4px 0;
    margin-bottom: 5px;
    color: red;
    font-weight: bold;
    font-size: 0.8em;
    overflow: hidden;
}

.form-input-warning-msg {
    display: block;
    margin-bottom: 2px;
    color: #eb9534;
    font-weight: 500;
    font-size: 0.9em;
    overflow: hidden;
}

.form-input-error-msg.show-error {
    display: block;
}

.alert.form-input-error-msg {
    padding: 4px;
    margin-bottom: 5px;
    color: #a94442;
    font-weight: bold;
}

.form-input-error-msg span.error-empty,
.form-input-error-msg span.error-wrong {
    display: none;
    font-size: 10px;
}

.form-input-error-msg span.error-empty.show-error,
.form-input-error-msg span.error-wrong.show-error {
    display: inline-block;
}

.error {
    border-color: red;
}

/*Form image CSS*/

.img-row {
    padding-bottom: 20px;
}

.img-row a {
    padding-right: 3px;
}

.img-row a:hover {
    cursor: pointer;
    text-decoration: none;
}

.img-row a img {
    border: 3px solid white;
}

.img-row a img:hover {
    border: 3px solid black;
}

/* Agreement Checkbox */

#submit_button {
    background-color: grey;
}
#submit_button:hover {
    color: white;
    cursor: auto;
}

.email-modal-edit {
    z-index: 2;
}
.accommodation_sug{
 position: block !important;
}
.auto-suggestion{
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 0;
    margin-top: 0;
    background: #fff;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    overflow-x: hidden;
    transition: all ease-out 1s;
    border: 1px solid black;

}
.auto-suggestion:hover{
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
}


.save_btn{
    display: flex;
    flex-direction: column;
    width: fit-content;
    border:1px solid black;
    border-radius: 5px;
    color:black;
    font-size: small;
    padding: 10px 15px 10px 15px;
    background-color: #F7e700;
    font-family: 'Montserrat', sans-serif;
    transition: .6s;
}

.save_btn:hover{
    background-color: black;
    color: #ffffff;
}

.link{
    color:#F7e700;
}

.auto-suggestion-item{
    display: block;
    padding:10px;
    border: 1px thin black;
}

.auto-suggestion-item:hover{
    background-color: rgba(0, 0, 0, 0.1);
    cursor:pointer;
}
.city{
    width: 100%;
    display: flex;
    flex-direction: col;
}

.add-row{
    display: flex;
    justify-content: space-evenly;
}

.add-row input{
    width: calc(50% - 10px);
}