﻿

.load {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*change these sizes to fit into your project*/
    width: 100px;
    height: 100px;
    z-index: 1004 !important;
}

    .load hr {
        border: 0;
        margin: 0;
        width: 40%;
        height: 40%;
        position: absolute;
        border-radius: 50%;
        animation: spin 2s ease infinite;
        opacity: 1 !important;
    }

    .load :first-child {
        background: #ed4096;
        animation-delay: -1.5s
    }

    .load :nth-child(2) {
        background: #5fc4bb;
        animation-delay: -1s
    }

    .load :nth-child(3) {
        background: #ece224;
        animation-delay: -0.5s
    }

    .load :last-child {
        background: #136e8a
    }

@keyframes spin {
    0%, 100% {
        transform: translate(0)
    }

    25% {
        transform: translate(160%)
    }

    50% {
        transform: translate(160%, 160%)
    }

    75% {
        transform: translate(0, 160%)
    }
}

.previous-btn {
    font-size: 18px;
    color: rgb(86 126 190 / 0.65);
    margin-right: 20px;
    font-weight: 500;
    border: 2px solid rgb(86 126 190 / 0.65);
}
    .previous-btn:hover {
        color: #136e8a;
   
    }
.start-primary {
    color: #fff;
    font-size: 18px;
    background-color: #136e8a;
    background-image: linear-gradient(45deg, #136e8a, transparent);
    font-weight: 500;
    margin-left: 20px;
    padding: 12px;
    border-radius: 50px;
    border-color: #136e8a;
}

    .start-primary:hover {
        color: #fff;
        background-color: #136e8a;
        background-image: linear-gradient(45deg,#136e8a, transparent);
        border-color: #136e8a;
    }



.btn-primary {
    color: #136e8a;
    font-size: 18px;
    background-color: white;
    font-weight: 500;
    margin-left: 20px;
    border: 2px solid #136e8a;
}



.btn-primary:hover {
    color: #fff;
    background-color: #136e8a;
    border-color: #136e8a;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: #fff;
    color: #136e8a;
}

.table-striped > tbody > tr:nth-of-type(even) > * {
    --bs-table-accent-bg: #dde3ef;
    color: #136e8a;
}
/*


                .inputGroup {
                    background-color: #fff;
                    display: block;
                    margin: 10px 0;
                    position: relative;
                }

                    .inputGroup label {
                        padding: 12px 30px;
                        width: 95%;
                        display: block;
                        text-align: left;
                        color: #3C454C;
                        cursor: pointer;
                        position: relative;
                        z-index: 2;
                        transition: color 200ms ease-in;
                        overflow: hidden;
                        border: 1px solid #5562eb;
                    }

                        .inputGroup label:before {
                            width: 10px;
                            height: 10px;
                            border-radius: 50%;
                            content: "";
                            background-color: #5562eb;
                            position: absolute;
                            left: 50%;
                            top: 50%;
                            transform: translate(-50%, -50%) scale3d(1, 1, 1);
                            transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
                            opacity: 0;
                            z-index: -1;
                        }

                        .inputGroup label:after {
                            width: 32px;
                            height: 32px;
                            content: "";
                            border: 2px solid #D1D7DC;
                            background-color: #fff;
                            background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
                            background-repeat: no-repeat;
                            background-position: 2px 3px;
                            border-radius: 50%;
                            z-index: 2;
                            position: absolute;
                            right: 30px;
                            top: 50%;
                            transform: translateY(-50%);
                            cursor: pointer;
                            transition: all 200ms ease-in;
                        }

                    .inputGroup input:checked ~ label {
                        color: #fff;
                    }

                        .inputGroup input:checked ~ label:before {
                            transform: translate(-50%, -50%) scale3d(56, 56, 1);
                            opacity: 1;
                        }

                        .inputGroup input:checked ~ label:after {
                            background-color: #54E0C7;
                            border-color: #54E0C7;
                        }

                  
        */
.container1 {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 18px;
    margin-bottom: 0px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .container1 input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: white;
    border: 1px solid rgb(86 126 190 / 0.85);
}

/* On mouse-over, add a grey background color */
.container1:hover input ~ .checkmark {
    background-color: #136e8a;
}

/* When the checkbox is checked, add a blue background */
.container1 input:checked ~ .checkmark {
    background-color: white;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container1 input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container1 .checkmark:after {
    left: 6px;
    top: 1.5px;
    width: 7px;
    height: 12px;
    border: solid #136e8a;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.check-bg {
    padding: 9px 9px;
}

.bg-checked {
    width: 50%;
    background: #136e8a;
    color: white;
    border-radius: 5px;
}

.options {
    color: rgb(86 126 190 / 0.85);
    text-align: left;
}




/* Create a custom radio button */
.radiomark {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #136e8a;
}

/* On mouse-over, add a grey background color */
.container1:hover input ~ .radiomark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container1 input:checked ~ .radiomark {
    background-color: #fff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiomark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.container1 input:checked ~ .radiomark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.container1 .radiomark:after {

    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #136e8a;
}

.main-div {
    margin-left: unset;
    background-image: url('../images/SurveyBg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /*                    display: flex;
*/ align-items: center;
    justify-content: center;
}

h4 {
    color: #136e8a
}

input[type=number] {
    padding: 8px 15px;
    border: 1px solid #136e8a;
    font-size: 18px
}

input.visited[type=number] {
    border: none;
    padding: 8px 15px;
    background: #dde3ef;
    color: #136e8a;
    font-size: 18px
}

input[type=text] {
    padding: 8px 15px;
    border: 1px solid #136e8a;
    font-size: 18px
}

input.visited[type=text] {
    border: 1px solid #136e8a;
    padding: 8px 15px;
    background: #dde3ef;
    color: #136e8a;
    font-size: 18px
}

table {
    text-align: center;
}

    table tr th:first-child {
        width: 400px;
        text-align: justify;
    }
.datepicker table tr th:first-child {
    width: 30px;
}
.checkbox-container {
    display: flex;
    position: relative;
    cursor: pointer;
    font-size: 18px;
    margin-bottom: 0px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .checkbox-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark-table {
    margin-left: auto;
    margin-right: auto;
    height: 20px;
    width: 20px;
    background-color: white;
    border: 1px solid rgb(86 126 190 / 0.85);
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark-table {
    background-color: #136e8a;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark-table {
    background-color: #136e8a;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark-table:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark-table:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark-table:after {
    top: 2.7px;
    margin-left: 5.5px;
    margin-right: auto;
    width: 7px;
    height: 12px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.question-text{
    width:95%;
}

table {
    border-collapse: separate;
    border-spacing: 0;
}

th, td{
    border: solid 1px #eff0f2;
    border-style: none solid solid none;
    padding: 10px;
}

tr:first-child th:first-child {
    border-top-left-radius: 10px;
}

tr:first-child th:last-child {
    border-top-right-radius: 10px;
}

tr:last-child th:first-child {
    border-bottom-left-radius: 10px;
}

tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

tr:first-child th {
    border-top-style: solid;
}

tr th:first-child {
    border-left-style: solid;
}
tr td:last-child {
    border-right-style: solid;
}
.datepicker {
    color: #136e8a;
    border: none !important;
}
.datepicker table tr th:first-child {
    width: 30px;
}
.datepicker th, td {
    border: solid 0px #eff0f2;
    padding: 2px;
}
.datepicker tr:last-child th:first-child {
    border-bottom-left-radius: 0px;
}
.datepicker tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}
    .datepicker .current-month div {
        background: #fff;
        border-radius: 5px;
        font-weight: 600;
    }
.gj-picker-bootstrap table tr td.other-month div {
    color: #bdc3cd
}
.options .gj-datepicker button {
    border: 0px;
    background: #fff;
    color: #136e8a;
}
.options .gj-datepicker button:hover {
    border: 0px;
    background: #fff;
    color: #136e8a;
}
#datepicker {
    border: none
}
    #datepicker:focus:focus {
        box-shadow:none !important
    }
    .options .gj-datepicker {
        border: 2px solid #136e8a;
        border-radius:10px
    }
    .gj-picker-bootstrap table tr td div, .gj-picker-bootstrap table tr th div {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
.gj-picker-bootstrap table tr td.selected.gj-cursor-pointer div {
    color: #fff;
    background-color: #0147ff;
    border-radius: 4px;
}
.gj-picker-bootstrap table tr td.today div {
    color: #fff;
    background-color: #0147ff;
    border-radius: 4px;
}
.gj-picker-bootstrap {
    display: block ;
    background-color: #dde3ef;
    border: 2px solid;
    border-radius: 15px;
    padding: 10px;
    margin-top: 5px;
}
    .gj-picker-bootstrap div[role=navigator] .gj-icon {
        background-color: #fff;
        border-radius: 50%;
    }
    .radio-container {
        display: flex;
        position: relative;
        cursor: pointer;
        font-size: 18px;
        margin-bottom: 0px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    .radio-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }
/* Create a custom radio button */
.radiomark-table {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #136e8a;
}

/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .radiomark-table {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .radiomark-table {
    background-color: #fff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiomark-table:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .radiomark-table:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radio-container .radiomark-table:after {
 
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #136e8a;
}
#side-by-side-matrix table td {
    border-left: none;
    border-right:none;
    padding:10px 0px;
}
#side-by-side-matrix table tr:nth-child(2) td {
    padding: 2px 0px 10px;
}
#side-by-side-matrix .radio-container {
  padding:0px 15px;
}
.rating-option {
    position: relative;
    top: 35%;
    height: 30%;
    padding: 20px 20px 0px;
    border: 2px solid #136e8a;
    border-radius:15px
}
.rating{
    padding-left:0px
}
.rating-lable {
    cursor: default;
    display: inline-block;
    list-style-type: none;
    margin: 0px 30px;
}

.ghost {
    opacity: 0.8;
}

.list-group {
    margin: 30px;
}

#drag-drop-options {
    width: 40vw;
    background: #dde3ef;
    border-radius: 20px;
    box-shadow: 0px 4px 5px #cfcdcd;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 0.75rem 1.25rem;
    color: #136e8a;
    background-color: #fff;
    border: 1px solid #eff0f2 !important;
    margin-bottom: 10px;
    border-radius: 8px !important;
    text-align: center;
}

#sorted-numbers {
    margin-left: 10px;
}

    #sorted-numbers .list-group-item {
        padding: 0.55rem 1.85rem;
        font-size: 18px;
        background-color: transparent
    }

#items-to-sort {
    margin-right: 10px;
}

.multiple-choice-img-question .checkmark {
    position: absolute;
    top: 8px;
    left: 46%;
    height: 20px;
    width: 20px;
    background-color: white;
    border: 1px solid rgb(86 126 190 / 0.85);
}


.single-choice-img-question .radiomark {
    position: absolute;
    top: 5px;
    left: 45%;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #136e8a;
}



.image-border {
    padding: 12px 13px 35px;
    border: 1px solid;
    margin: 0px 5px;
    border-radius: 12px;
}

.rating-image-border {
    padding: 12px 13px;
    border: 1px solid;
    margin: 0px 5px;
    border-radius: 12px;
}
.hour {
    padding: 5px;
    border: 1px solid #136e8a;
    color: #136e8a;
    font-size: 16px;
    border-radius: 7px;
}
.minute {
    padding: 5px;
    border: 1px solid #136e8a;
    color: #136e8a;
    font-size: 16px;
    border-radius: 7px;
}
.table-bordered {
    border-radius: 10px;
}