/* Style ogólne */

body {
    background-color: lightpink;
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    display: inline-flex;
    overflow-x: auto;
    font-family: 'Barlow', sans-serif;
}

p, h1, h2, h3, h4 {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

*:focus {
    outline: none;
}

.d-none {
    display: none !important;
}

ul, li {
    padding: 0;
    margin: 0;
}

input {
    cursor: pointer;
    -webkit-appearance: none;
}

input[type="radio"] {
    margin: 0 !important;
}

input[type="radio"]:checked {
    background-color: #cfccf7 !important;
}

input[type="radio"] {
    height: 10px !important;
    width: 10px !important;
    border-radius: 4px !important;
    border: 1px solid #e8ebef !important;
    background-color: #fff !important;    
}

input[type="radio"]:checked {
    background-color: #114C81 !important;
}

/* Style używane globalnie */

input[type="checkbox"] {
    margin: 0 !important;
}

input[type="checkbox"]:hover {
    background-color: #cfccf7 !important;
}

input[type="checkbox"] {
    height: 17px !important;
    width: 17px !important;
    border-radius: 4px !important;
    border: 1px solid #e8ebef !important;
    background-color: #fff !important;
    margin-right: 6px !important;
}

input[type="checkbox"]:checked {
    background-color: #114C81 !important;
}

#col input:focus, #col select:focus, #col textarea:focus {
    border: none;
}

#col li {
    display: flex;
    align-content: center;
    margin-bottom: 5px !important;
}

#col li:last-child {
    margin-bottom: 20px !important;
}

.button-main {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #fff;
    color: #114C81;
    border-radius: 10px;
    border: none;
    box-shadow: rgb(50 50 105 / 15%) 0px 2px 5px 0px, rgb(0 0 0 / 5%) 0px 1px 1px 0px;
    cursor: pointer;
}

.button-main:hover {
    background-color: #114C81;
    color: #fff;
}

.label {
    color: #114C81 !important;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 3px;
    display: block;
}