﻿::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #232729;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

body {
    background: #009bff;
    background: -webkit-linear-gradient(left,#00b58e,#00c6ff);
    background: -o-linear-gradient(left,#00b58e,#00c6ff);
    background: -moz-linear-gradient(left,#00b58e,#00c6ff);
    background: linear-gradient(left,#00b58e,#00c6ff);
}
html {
    position: relative;
    min-height: 100vh;
}

.header {
    height: auto;
    box-shadow: 0px 0px 5px black;
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    background: white;
    padding: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.footer {
    box-shadow: 0px 0px 5px black;
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    background: white;
    padding: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: fixed;
    bottom: 0;
}
.container-form {
    box-shadow: 0px 0px 5px black;
    border-radius: 10px;
    margin-top: 50px;
    padding: 50px;
    padding-top: 20px;
    width: 80%;
    background: white;
    margin-left: 10%;
    margin-right: 10%;
    /*margin-bottom: 75px;*/
}

.repeater-container {
    padding: 5px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.title {
    padding-bottom: 20px;
    font-variant: petite-caps;
    text-align: center;
}
a {
    color: black;
    text-decoration: none;
}
    a:hover {
        color: black;
        text-decoration: none;
    }
.errorLabel {
    color:red;
}
.description {
    padding: 5px;
    color: #404040;
}
.smallDescription {
    cursor: pointer;
    font-size: 12px;
    position: absolute;
    width: 107px;
    top: 20px;
    left: -43px;
    font-weight: bold;
}
.btnSend {
    padding: 10px;
    margin-top: 20px;
    width: 100%;
    cursor: pointer;
}

    .btnSend i {
        padding: 5px;
    }
@media only screen and (max-width: 680px) {
    .logo img {
        border-right: none !important;
        width: 40% !important;
        margin-left: 30% !important;
        margin-right: 30% !important;
        padding-right: 0px !important;
    }

    .header {
        padding-bottom: 0px !important;
    }

    .description {
        display: none;
    }
}

.logo {
    margin-right: 10px;
}

    .logo img {
        border-right: 1px solid lightgray;
        float: left;
        width: 150px;
        height: auto;
        padding-right: 40px;
        margin-left: 20px;
    }

.hr-theme-slash-2 {
    opacity: .5;
    display: flex;
}

.hr-line-left {
    width: 100%;
    position: relative;
    margin: 15px;
    background: linear-gradient(45deg, transparent, black);
    height: 1px;
}

.hr-line-right {
    width: 100%;
    position: relative;
    margin: 15px;
    background: linear-gradient(45deg, black, transparent);
    height: 1px;
}

.hr-icon {
    position: relative;
    top: 3px;
}

.radio_2k {
    width: 100%;
}

    .radio_2k td {
        border: none;
    }

    .radio_2k tr {
        background: none !important;
    }

    .radio_2k input[type=radio] {
        position: absolute;
        width: 0px;
    }

        .radio_2k input[type=radio] + label {
            cursor: pointer;
            border-radius: 5px;
            min-width: 50px;
            width: 100%;
            margin: 0;
            padding: 5px 5px 5px 5px;
            text-align: center;
        }

        .radio_2k input[type=radio]:focus + label {
            color: #495057;
            outline: 0;
            box-shadow: 0 0 0 0.2rem rgb(0 197 250 / 25%);
        }

        .radio_2k input[type=radio]:checked + label {
            background: #00b58e;
            color: white;
        }

        .radio_2k input[type=radio]:disabled + label {
            opacity: .5;
            cursor: default;
        }