body {
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

section {
    margin: 2em 0;
}

.page-link {
    margin: 1em 2em;
}

.survey-page-header,
.survey-page-header .sv_main {
    background-color: #e7e7e7;
}

.survey-page-header-content {
    max-width: 80%;
    margin: auto;
    padding: 1.5em;
}

    .survey-page-header-content a {
        color: white;
        text-decoration: unset;
    }

.sv_main.sv_frame .sv_container .sv_header {
    padding-top: 2em;
}

.svd_container .sv_custom_header {
    display: none;
}

.sv_main.sv_frame .svd_container .sv_container {
    max-width: none;
    padding: unset;
}

.surveys-list table thead td {
    font-weight: bold;
}

.surveys-list table td:nth-child(2) {
    width: 50%;
}

.sv_button_link {
    color: #1ab394;
    width: 100px;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    text-align: center;
}

    .sv_button_link:hover,
    .sv_button_link:visited:hover {
        background-color: #1ab394;
        border-color: #1ab394;
        color: #fff;
        border-radius: 2px;
        text-decoration: none;
    }

    .sv_button_link:visited {
        color: #1ab394;
    }

    .sv_button_link.sv_button_delete {
        color: #ec2626;
    }

        .sv_button_link.sv_button_delete:hover {
            background-color: #ec2626;
            color: #fff;
        }

    .sv_button_link.sv_button_clone {
        color: #ec2626;
    }

        .sv_button_link.sv_button_clone:hover {
            background-color: #ec2626;
            color: #fff;
        }

#resultsTable td {
    cursor: pointer;
}

.sv_body {
    overflow: scroll;
}

.fork_me_on_github img {
    z-index: 1;
}

.container-alert {
    box-sizing: border-box
}

    .container-alert .alert {
        margin-bottom: 10px
    }

        .container-alert .alert:last-child {
            margin-bottom: 0
        }

.uploadDefault {
    display: none !important;
}

.savingBtn {
    display: none !important;
}

.savingBtnVisible {
    display: block;
}

.savingBtnVisibleHideUpload {
    display: none !important;
}

.uploadSuccess {
    display: block;
}

.uploadError {
}

.uploadSaving {
}

/* Alerting css*/
.alert {
    width: 100%;
    padding: 15px;
    position: relative;
    border-left: 8px solid #bababa;
    background: #ededed;
    color: #a1a1a1;
    border-radius: 4px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    font-size: 16px
}

    .alert .alert--close,
    .alert .alert--icon {
        height: 100%;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 20px
    }

    .alert .alert--close_absolute,
    .alert .alert--icon_absolute {
        position: absolute;
        top: 10px;
        right: 10px;
        -ms-flex-align: start;
        align-items: flex-start;
        height: auto
    }

    .alert .alert--icon {
        margin-right: 10px
    }

    .alert .alert--close {
        margin-left: 10px;
        opacity: .7;
        transition: .5s;
        cursor: pointer
    }

        .alert .alert--close:hover {
            opacity: 1
        }

    .alert .alert--content {
        width: 100%;
        line-height: 1.5
    }

    .alert .alert--buttons {
        width: 100%;
        margin-top: 10px
    }

.alert_sm {
    padding: 10px;
    font-size: 14px
}

    .alert_sm .alert--close,
    .alert_sm .alert--icon {
        font-size: 16px
    }

.alert_lg {
    font-size: 26px
}

    .alert_lg .alert--close,
    .alert_lg .alert--icon {
        font-size: 26px
    }

.alert .hr {
    height: 1px;
    width: 100%;
    border: none;
    background: #ddd;
    margin: 10px 0
}

.alert_success {
    border-color: #2ed573;
    background: #c3f3d7;
    color: #23ad5c
}

    .alert_success .hr {
        background: #23ad5c
    }

.alert_danger {
    border-color: #ff4757;
    background: #ffe0e3;
    color: #ff4757
}

    .alert_danger .hr {
        background: #ff4757
    }

.alert_warning {
    border-color: #ffa502;
    background: #ffdb9b;
    color: #ce8500
}

    .alert_warning .hr {
        background: #ce8500
    }

.alert_info {
    border-color: #71c9ff;
    background: #d7f0ff;
    color: #3eb6ff
}

    .alert_info .hr {
        background: #3eb6ff
    }

.alert_dark {
    border-color: #333;
    background: #4d4d4d;
    color: #ccc
}

    .alert_dark .hr {
        background: #1a1a1a
    }

@keyframes showAlert {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1
    }
}

.alert {
    transition: .5s ease-in-out;
    visibility: visible;
    opacity: 1;
    height: auto;
    overflow: hidden;
    animation-name: showAlert;
    animation-duration: .5s;
    animation-fill-mode: both
}

    .alert.alert_none {
        display: none
    }

.fixed-alerts {
    box-sizing: border-box;
    position: fixed;
    z-index: 9999999;
    width: calc(100% - 20px);
    max-width: calc(400px - 20px)
}

.fixed-alerts_bottom {
    bottom: 10px
}

.fixed-alerts_top {
    top: 10px
}

.fixed-alerts_right {
    right: 10px
}

.fixed-alerts_left {
    left: 10px
}

.fixed-alerts .alert {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
    margin-bottom: 10px
}

    .fixed-alerts .alert:last-child {
        margin-bottom: 0
    }

.sq-comment {
    -webkit-text-fill-color: Red !important;
    font-style: italic;
}