:root{
    --main_color: #ED1B23;
    --secondary_color: #FFFFFF;
}
::selection {
    background: var(--main_color);
    color: var(--secondary_color);
}
[contenteditable=true],[tabindex],a,button,input,select,textarea{
    color:#000;
    outline:none;
    transition:all .5s ease;
    resize:none;
    border:none;
    text-decoration:none;
    padding:0;
    cursor:pointer;
    display:block
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button{
    -webkit-appearance:none;
    margin:0
}
input[type=number]{
    -moz-appearance:textfield
}
input::-webkit-input-placeholder{
    font-weight:400;
    font-size:14px;
    line-height:21px;
    color:#8D93B5
}
input::-moz-placeholder{
    font-weight:400;
    font-size:14px;
    line-height:21px;
    color:#8D93B5
}
input::placeholder{
    font-weight:400;
    font-size:14px;
    line-height:21px;
    color:#8D93B5
}
.body {
    font-family:Inter,sans-serif;
    font-style: normal;
    background: var(--main_color);
    color: var(--secondary_color);
}

.photos{
    position: relative;
    width: 100%;
    /*min-height: 346px;*/
    background: #FFFFFF;
    padding: 16px 0 26px;
}
.photos h2{
    margin: 0 16px;
    padding: 0;
    font-weight: 400;
    font-size: 24px;
    line-height: 35px;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #ED1B23;
}
.photos h2 span{
    font-weight: 700;
}
.photos-slider{
    margin:0;
    padding: 10px 0;
    overflow: auto;
    width: 100%;
}
.slider-items{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
    width: max-content;
    padding: 0 0 14px;
    margin: 0 16px;
}
.slider-item {
    height: 226px;
    width: 226px;
}
.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

main{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 60%, rgba(0, 0, 0, 0) 100%);
    position: relative;
}
main:after{
    content: '';
    display: block;
    position: absolute;
    left:0;
    right: 0;
    bottom: -100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}
.checkout{
    margin: 0 0 8px;
}
.checkout h2{
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    margin: 0px 0 20px;
}
.checkout-info{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
#event-price{
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: var(--secondary_color);
    white-space: nowrap;
}
#event-price span{
    margin: 0 0 0 4px;
    font-size: 200%;
}