/*
Theme Name:     WP Spin Coca Cola
Description:    Coca Cola Project
Author:         toolbox

*/

:root {
  --main-color: #ffffff;  
  --main-background-color: #e20613;
    
  --popup-background-color: #ffffff;
  --popup-color: #e20613;
}

@font-face {
    font-family: 'TitlingBold';
    src: url('./fonts/TitlingBold.otf')  format('opentype');
}

html{
    font-size: 16px;        
}

body, body *{
    font-family: 'TitlingBold', sans-serif;
    color: var(--main-color);
}

body{
    background-color: red;
}

.slide{
    width: 980px;    
    height: 1390px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: none;
    background-color: var(--main-background-color);        
    background-image: url('https://cocacola.q12.gr/wp/wp-content/uploads/2023/12/background.jpg');        
    background-position: top left;
    background-repeat: no-repeat;    
}

.slide.active{
    display: block;
}

a{
    text-decoration: none;
    color: var(--main-color);
    
}

.main{
    
    text-align: center;
    width: 980px;
    margin-top: 60px;
    height: 960px;
    display: flex;
    justify-content: center;
    align-items: center;    
    flex-wrap: wrap;
    
}

#troxos-area{
    margin-top: 270px;
    margin-bottom: 130px;    
}

#canvasContainer {
    position: relative;
    width: 600px;
    
}

#canvas {
    z-index: 1;
    
}

#prizePointer {
    position: absolute;
    left: 280px;
    top: -35px;
    z-index: 999;
    
}

.simple-text{
    display: block;
    width: 100%;
    height: auto;
    font-size: 4rem;
    line-height: 4.2rem; 
    text-align: left;
}

.simple-text.center{
    text-align: center;
}

#spin_button{
    display: block;
    margin-top: 35px;
}

.winner, .loser{
    display: none;    
}

.winner.active{
    display: block;
    margin-top: 45px;
}

.loser.active{
    display: block;
    margin-top: 30px;
}



