#ruleta-container {
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.container-canvas {
    position: relative;
}

#centro-circulo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: #040b2d;
    border: 2px solid #ba933a;
    border-radius: 50%;
    z-index: 1;
}


#ruleta-form {
    margin-bottom: 20px;
    width: 60%;
}

#ruleta-canvas {
    margin: 0 auto;
    display: block;
    max-width: 500px;
    height: auto;
}

#resultado {
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
}

#ruleta-container input{
    border: 0px solid;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    width: 50%;
}

.terms input{
    width: auto !important;
}

.terms a{
    text-decoration: underline !important;
    color: #000;
}

#ruleta-container label{
    font-weight: 600;
    margin-bottom: 1em;
    margin-top: 1em;
}

#ruleta-container button{
    background-color: #040B2D;
    color: #ffffff;
    border: 0px;
    border-radius: 15px;
    padding: 1em;
    font-weight: 600;
}

.container-field{
    margin-bottom: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#pais{
    width: 100% !important;
}

.country-select{
    width: 50%;
}

#observaciones{
    width: 50%;
    min-height: 1em;
    border: 0px solid;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

[type=checkbox]{
    display: inline-block;
    background-color: #fff;
    border: 1px solid #bbb;
    line-height: 0;
    width: 16px;
    min-width: 16px;
    height: 16px;
    margin: -3px 10px 0 0;
    outline: 0;
    text-align: center;
    vertical-align: middle;
    clear: none;
    cursor: pointer;
    -webkit-appearance: none;
}

input[type="checkbox"]:checked{
    background-color: #b2e81f;
}

@media (max-width:1200px) {
    #ruleta-canvas, .terms input, .country-select {
        width: 100%;
    }
    #ruleta-container input {
        width: 100%;
    }
    #observaciones{
        width: 100%;
    }
}

@media (max-width: 1000px){
    #ruleta-container {
        display: flex;
        flex-direction: column;
    }
    #ruleta-canvas {
        width: 100%;
    }
    #centro-circulo {
        top: 50%;
        left: 50%;
    }
}