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, hgroup,menu, nav, output, ruby, section, summary,time, mark, audio, video {margin: 0;padding: 0;border: 0;font-size: 100%;font: inherit;vertical-align: baseline;}article, aside, details, figcaption, figure,footer,header, hgroup, 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: "";content: none;}table {border-collapse: collapse;border-spacing: 0;}

body {
    font-family: 'roboto', sans-serif;
}

h1 {
    font-size: 50px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 10px 0;
    color: white;
}

h2, h3 {
    font-size: 25px;
    text-align: center;
    color: white;
    text-transform: uppercase;
}

h3 {
    font-weight: 500;
}

button {
    outline: none;
}

#wrapper {
    width: 100%;
    height: 100%;
    padding: 30px 0;
    background: #c31432;
    background: -webkit-linear-gradient(to top, #240b36, #c31432);
    background: linear-gradient(to top, #240b36, #c31432);
}

#content {
    width: 700px;
    height: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

#header {
    padding: 20px 0 0 0;
}

#header h2 {
    padding: 10px;
}

#timer {
    padding: 20px 0;
    font-size: 30px;
    color: white;
    font-weight: 500;
}

#video_cover {
    width: 400px;
    margin: 0 auto;
}

#video {
    width: 400px;
    border-radius: 8px;
    box-sizing: border-box;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

#mid_text {
    padding: 10px 0 0 0;
    line-height: 30px;
}

.btn_cover {
    text-align: center;
    padding: 20px 0;
}

.btn_cover1 {
    padding: 10px 0 20px 0;
}

.btn {
    border: none;
    padding: 10px 30px;
    min-width: 200px;
    font-size: 20px;
    border-radius: 110px;
    background-color: white;
    transition: .4s;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    font-weight: 600;
}

.btn {
    color: #5d0f35;
    border: 2px solid #5d0f35;
}

.btn:hover {
    transition: .4s;
    background-color: #5d0f35;
    color: white;
}

#gif {
    text-align: center;
    
}

#gif img {
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

#form {
    padding: 20px 0;
    box-sizing: border-box;
    padding: 20px 0; 
}

.price {
    color: white;
    padding: 20px 0;
}

.old_price {
    font-size: 30px;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.new_price {
    font-size: 40px;
    font-weight: 900;
}

select, input {
    width: 60%;
    box-sizing: border-box;
    padding-left: 20px;
    height: 40px;
    margin: 5px 0;
    border-radius: 110px;
    border: 2px solid white;
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    color: #2e0c36;
    border: none;
}

.ac_footer {
	height: 0;
  	color: white;
  	padding: 10px 0 50px 0;
  	background-color: #240b36;
  	margin: -10px 0 0 0;
}

.ac_footer a {
	color: white;
}

@media (max-width: 700px) {
    #content {
        width: 90%;
    }
    #video_cover {
        width: 100%;
    }
    #video {
        width: 100%;
    }
    select, input {
        width: 90%;
    }
    .nice-select {
        width: 90%;
    }
}

@media (max-width: 400px) {
    select, input {
        font-size: 15px;
    }
    .nice-select {
        font-size: 15px;
    }
}


