/*

* kahoot template
* Version: 0.1

=================================

    Include section: 
    01. font import
    02. Basic css
    03. section area start

    
*/

/*======================
   01. font import
========================*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/*======================
   02. Basic css
========================*/
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

/* body {
    line-height: 22px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
} */

body {
    line-height: 22px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(-45deg, #ff9900, #720070, #0a3fa9, #008f00);
    background-size: 400% 400%;
    animation: gradient 25s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

ol,
ul {
    list-style: none;
}

a:hover {
    text-decoration: none;
}

button:focus, input:focus, textarea:focus, select:focus {
    outline: 0;
}


/*========================
   03. section area start
==========================*/

.section-wrapper {
    height: 100vh;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    overflow: hidden;
}

.section-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: #46178f; */
    z-index: -11;
}

.form-section, .result-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }  

.result-section {
    margin-top: 18px; 
    margin-left: auto;
    display: flex;
    flex-direction: row;
    margin-right: auto;
}

.result {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 6px;
    line-height: 60px;
}

.files {
    display: flex;
    padding: 30px;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 32px;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.files:hover {
    background: rgba(255,255,255,0.1);
}

.files a {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 32px;
    color: white;
    text-decoration: none;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.logo img {
    width: 200px;
}

.section-box.generator {
    width: 420px;
}

.section-box .id-input {
    text-transform: lowercase;
}

.section-box .valid-code {
    font-size: 1.8rem;
    position: absolute;
    right: -48px;
    bottom: 28px;
    display: none;
}

.section-box .valid-file {
    font-size: 1.8rem;
    position: absolute;
    right: -48px;
    bottom: 28px;
    display: none;
}

.section-box {
    background-color: #ffffff;
    padding: 16px;
    border-radius: 4px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 4px;
            box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 4px;
    width: 320px;
    margin: 30px auto 0 auto;
    position: relative;
}

.section-box input {
    width: 100%;
    height: 48px;
    color: rgb(51, 51, 51);
    border: 2px solid #B2B2B2;
    border-radius: 4px;
    padding: 0;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    font-family: Montserrat, "Noto Sans Arabic", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
}

.section-box input::-webkit-input-placeholder {
     color: #B2B2B2;
}

.section-box input::-moz-placeholder {
     color: #B2B2B2;
}

.section-box input:-ms-input-placeholder {
     color: #B2B2B2;
}

.section-box input::-ms-input-placeholder {
     color: #B2B2B2;
}

.section-box input::placeholder {
     color: #B2B2B2;
}

.section-box input:focus {
    border: 2px solid rgb(51 51 51);   
}

.submit-btn {
    height: 48px;
    padding-bottom: 2px;
    background-color: #2f2f2f;
    -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px -2px inset;
            box-shadow: rgba(0, 0, 0, 0.25) 0px -2px inset;
    border: transparent;
    width: 100%;
    border-radius: 4px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: 700;
    font-family: Montserrat, "Noto Sans Arabic", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.short-url {
    height: 48px;
    border: transparent;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    font-weight: 700;
    font-family: Montserrat, "Noto Sans Arabic", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.submit-btn:hover {
    margin-top: 12px;
    height: 46px;
}

.footer-box {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}

.footer-box p {
    font-weight: 600;
    padding-bottom: 5px;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.footer-box p a {
    color: #ffffff;
}

.footer-box p a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.footer-box p a:hover {
    text-decoration: underline;
}

.footer-box ul li {
    display: inline-block;
    padding-bottom: 5px;
}

.footer-box ul li a {
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.footer-box ul li a:hover {
    text-decoration: underline;
}

.uppy-DragDrop-container:disabled {
    height: 50px !important;
    border: 2px solid #B2B2B2 !important;
    border-radius: 4px !important;
    cursor: auto !important;
}

.uppy-DragDrop-container {
    height: 50px !important;
    border: 2px dashed rgb(51 51 51) !important;
    border-radius: 4px !important;
}

.uppy-DragDrop-arrow {
    display: none !important;
}

.uppy-DragDrop-label {
    color: rgb(51, 51, 51);
    font-size: 1rem !important;
    font-weight: 700;
    font-family: Montserrat, "Noto Sans Arabic", "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-bottom: 0 !important;
}

@media (max-width: 575px) {

    .footer-box p {
        width: 12.5rem;
        margin-left: auto;
        margin-right: auto;
    }
    
}