/* CSS RESET */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}.paragraph ul {list-style: disc; margin-left: 20px;}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    background-color: #0b0709;
}
.topBanner{
    float:left;
    width: 100%;
}
.s-show{
    display: none;
}
.form{
    float:left;
    width: 100%;
}
.wrapper{
    max-width: 700px;
    margin: auto;
    float: none;
    padding: 0 30px;
}
.mt5{
    margin-top: 5px;
}
.w-full{
    width: 100%;
}
.formContainer{
    float:left;
    width: 100%;
    padding: 40px;
    border: 10px solid #a51616;
    background-color: #ad1917;
    border-radius: 10px;
    margin-top: 0px;
}
.formTitle{
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 300;
    color: white;
    font-size: 30px;
    line-height: 34px;
    text-transform: uppercase;
    letter-spacing: 10px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-family: "Roboto Condensed", sans-serif;
}
.hide{
    display: none;
}
.inputLabel{
    font-weight: 500;
    font-size: 17px;
    line-height: 30px;
    color: white;
    font-family: "Roboto Condensed", sans-serif;
}
.input{
    border-radius: 5px;
    background-color: rgba(255,255,255,0.6);
    float:left;
    width: 100%;
    outline: none;
    padding: 7px 5px;
    font-size: 15px;
    border: 1px solid rgb(96 16 12);
    color: black;
    font-family: "Roboto Condensed", sans-serif;
}
.input::placeholder{
    color: rgba(0, 0, 0, 0.7);
}
.image, .image img{
    float: left;
    width: 100%;
}

.addButton{
    font-size: 18px;
    border-radius: 5px;
    padding: 7px 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    outline: none;
    font-family: "Roboto Condensed", sans-serif;
}
.addButton:hover{
    background-color: rgba(255, 255, 255, 0.7);
}
.removeButton{
    font-size: 18px;
    border-radius: 5px;
    padding: 7px 20px;
    color: white;
    background-color: rgb(126, 2, 0);
    border: none;
    outline: none;
    font-family: "Roboto Condensed", sans-serif;
}
.removeButton:hover{
    background-color: rgb(82, 6, 5);
}
.submitButton{
    font-size: 20px;
    border-radius: 5px;
    padding: 12px 20px;
    color: white;
    background-color: rgb(77, 161, 9);
    border: 1px solid #087c08;
    cursor: pointer;
    font-family: "Roboto Condensed", sans-serif;
}
.submitButton:hover{
    background-color: rgb(67, 145, 4);
}
.flex{
    display: flex;
    gap: 10px;
}
.buttonRight{
    display: flex;
    align-items: end;
    text-wrap: nowrap;
}
.buttonsRight{
    display: flex;
    align-items: start;
    justify-content: space-between;
    text-wrap: nowrap;
    margin-top: 20px;
}
@media only screen and (max-width: 920px) {
    .s-show{
        display: block;
    }
    .s-hide{
        display: none;
    }
    .formContainer{
        margin-top: 0px;
        padding: 20px;
    }
    .formTitle{
        font-size: 20px;
        line-height: 24px;
        letter-spacing: 3px;
    }
    .flex{
        flex-direction: column;
    }
    .buttonsRight{
        flex-direction: column;
        align-items: end;
        gap: 20px;
    }
    .guestInput{
        padding: 10px;
        background-color: #961110;
        border-radius: 10px;
        margin-top: 10px;
    }
}