
/* width */
::-webkit-scrollbar {
    width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px darkblue;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #17a2b8;
}

#headofficeDevicesList tbody .even td table tbody tr{
    background-color: white;
    border-top-color: white;
}

#headofficeDevicesList tbody .even td table{
//background-color: white;
    border-top-color: white;
}


.profilePic {
    min-width: 150px;
    min-height: 200px;
    padding: 10px;
}

.verticalRotatedTextBackedUpd{
    writing-mode: vertical-rl;
    text-orientation: mixed;
}


.profileListTitle {
    font-weight: 500;
}

.profileListItem {
    font-weight: 300;
    color: rgba(0.0.0.0.8);
}


.pace {
    -webkit-pointer-events: none;
    pointer-events: none;

    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;

    z-index: 2000;
    position: fixed;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 5px;
    width: 200px;
    background: #fff;
    border: 1px solid #0d4bf2;

    overflow: hidden;
}

.pace .pace-progress {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;

    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);

    max-width: 200px;
    position: fixed;
    z-index: 2000;
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    height: 100%;
    width: 100%;
    background: #0d4bf2;
}

.pace.pace-inactive {
    display: none;
}





.path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash 2s linear alternate infinite;
}

@keyframes dash {
    from {
        stroke-dashoffset: 10000;
    }
    to {
        stroke-dashoffset: 0;
    }
}

.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #008000 transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.heartbeatLoader {
    animation: heartbeat 1.5s ease-in-out infinite both;
}

.fade-inLoader {
    animation: fade-in 1.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) infinite alternate-reverse both;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes heartbeat {
    from {
        transform: scale(1);
        transform-origin: center center;
        animation-timing-function: ease-out;
    }
    10% {
        transform: scale(0.91);
        animation-timing-function: ease-in;
    }
    17% {
        transform: scale(0.98);
        animation-timing-function: ease-out;
    }
    33% {
        transform: scale(0.87);
        animation-timing-function: ease-in;
    }
    45% {
        transform: scale(1);
        animation-timing-function: ease-out;
    }
}


.div-arrow-right {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;

    border-left: 6px solid blue;
    display: inline-block;
}

.containerCheckBox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.containerCheckBox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmarkCheckBox {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.containerCheckBox:hover input ~ .checkmarkCheckBox {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.containerCheckBox input:checked ~ .checkmarkCheckBox {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmarkCheckBox:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.containerCheckBox input:checked ~ .checkmarkCheckBox:after {
    display: block;
}

/* Style the checkmark/indicator */
.containerCheckBox .checkmarkCheckBox:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

div.fadeMe {
    opacity:0.7;
    filter: alpha(opacity=20);
    background-color:#000;
    width:100%;
    height:100%;
    z-index:10;
    top:0;
    left:0;
    position:fixed;
}

div.popup {
    position: fixed;
    left: 50%; top: 50%;
    opacity:0.4;
    width: 50%; height: 50%;
    background: white;
    border-radius: 3px;
    padding: 10px;
    z-index: 11;
    height: 7%;
    width: 20%
}

div div.popup {
    position: fixed;
    top: 0;
    right: 10%;
    bottom: 10%;
    left: 10%;
    background-color: red;
    background: blue;
    opacity: .6;
    z-index: 9999999;
    text-align:center;
}

.wizard {
    margin: 20px auto;
    background: #fff;
}

.jspanel{
    position:absolute;
    margin-left:100px;
}

.wizard .nav-tabs {
    position: relative;
    margin: 40px auto;
    margin-bottom: 0;
    border-bottom-color: #e0e0e0;
}

.wizard > div.wizard-inner {
    position: relative;
}

.connecting-line {
    height: 2px;
    background: #e0e0e0;
    position: absolute;
    width: 80%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 50%;
    z-index: 1;
}

.wizard .nav-tabs > li.active > a, .wizard .nav-tabs > li.active > a:hover, .wizard .nav-tabs > li.active > a:focus {
    color: #555555;
    cursor: default;
    border: 0;
    border-bottom-color: transparent;
}

span.round-tab {
    width: 70px;
    height: 70px;
    line-height: 70px;
    display: inline-block;
    border-radius: 100px;
    background: #fff;
    border: 2px solid #e0e0e0;
    z-index: 2;
    position: absolute;
    left: 0;
    text-align: center;
    font-size: 25px;
}
span.round-tab i{
    color:#555555;
}
.wizard li.active span.round-tab {
    background: #fff;
    border: 2px solid #5bc0de;

}
.wizard li.active span.round-tab i{
    color: #5bc0de;
}

span.round-tab:hover {
    color: #333;
    border: 2px solid #333;
}

.wizard .nav-tabs > li {
    width: 25%;
}

.wizard li:after {
    content: " ";
    position: absolute;
    left: 46%;
    opacity: 0;
    margin: 0 auto;
    bottom: 0px;
    border: 5px solid transparent;
    border-bottom-color: #5bc0de;
    transition: 0.1s ease-in-out;
}

.wizard li.active:after {
    content: " ";
    position: absolute;
    left: 46%;
    opacity: 1;
    margin: 0 auto;
    bottom: 0px;
    border: 10px solid transparent;
    border-bottom-color: #5bc0de;
}

.wizard .nav-tabs > li a {
    width: 70px;
    height: 70px;
    margin: 20px auto;
    border-radius: 100%;
    padding: 0;
}

.wizard .nav-tabs > li a:hover {
    background: transparent;
}

.wizard .tab-pane {
    position: relative;
    padding-top: 50px;
}

.wizard h3 {
    margin-top: 0;
}

@media( max-width : 585px ) {

    .wizard {
        width: 90%;
        height: auto !important;
    }

    span.round-tab {
        font-size: 16px;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .wizard .nav-tabs > li a {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .wizard li.active:after {
        content: " ";
        position: absolute;
        left: 35%;
    }
}

.sticky-col {

}

.cursor-pointer{
    cursor: pointer;
}

.fancy-border {
    border: 5px groove #A43175;
    border-radius: 14px;
}

/*Profile Pic Start*/
.picture-container{
    position: relative;
    cursor: pointer;
    text-align: center;
}
.picture{
    width: 106px;
    height: 106px;
    background-color: #999999;
    border: 4px solid #CCCCCC;
    color: #FFFFFF;
    border-radius: 50%;
    margin: 0px auto;
    overflow: hidden;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}
.picture:hover{
    border-color: #2ca8ff;
}
.content.ct-wizard-green .picture:hover{
    border-color: #05ae0e;
}
.content.ct-wizard-blue .picture:hover{
    border-color: #3472f7;
}
.content.ct-wizard-orange .picture:hover{
    border-color: #ff9500;
}
.content.ct-wizard-red .picture:hover{
    border-color: #ff3b30;
}
.picture input[type="file"] {
    cursor: pointer;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0 !important;
    position: absolute;
    top: 0;
    width: 100%;
}

.picture-src{
    width: 100%;
}

/*Profile Pic End*/

.rotate{
    -moz-transition: all 0.1s linear;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear;
}

.rotate.down{
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

select[name="company_TR"] option[value="0"]{
    color: red;
}

select[name="estate_TR"] option[value="0"]{
    color: red;
}

.chip {
    display: inline-block;
    padding: 0 10px;
    height: 30px;
    font-size: 13px;
    line-height: 30px;
    border-radius: 15px;
    background-color: #f1f1f1;
}

.chip img {
    float: left;
    margin: 0 10px 0 -10px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

.closebtn {
    padding-left: 20px;
    color: #888;
    font-weight: bold;
    float: right;
    font-size: 14px;
    cursor: pointer;
}

.closebtn:hover {
    color: #fb0025;
}


.idcard_infolabel{
    font-size: 9px;
    color: #0d0d0d;
    width: 25%;
}

.idcard_infoText{
    font-size: 9px;
    color: #0d0d0d;

}

table.idcard td {
    max-height: 5px;
}

.dataTables-info .select-info{
    color:green;
}

#footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /*  height: 2.5rem;             Footer height */
}

.plucker_weight_data_div_container{
    width:2000px;
    overflow-x: auto;
    white-space: nowrap;
}

.ScaleDataInnerTable .totaltd{
    background-color:#9cc1ff;
}

#ScaleDataInnerTable td { white-space: nowrap }

td.dt-nowrap { white-space: nowrap }
td.morningth { white-space: nowrap }
td.noonth { white-space: nowrap }
td.eveningth { white-space: nowrap }
td.totalth { white-space: nowrap }
td.morningtd { white-space: nowrap }
td.noontd { white-space: nowrap }
td.eveningtd { white-space: nowrap }
td.totaltd { white-space: nowrap }
td.morningtotaltd { white-space: nowrap }
td.morningtotaltd { white-space: nowrap }
td.noontotaltd { white-space: nowrap }
td.eveningtotaltd { white-space: nowrap }
td.totalfootertd { white-space: nowrap }


#ScaleDataInnerTable .morningth {

    background-color: #00FF0060;
}
#ScaleDataInnerTable .noonth {
    background-color: #ADFF2F60;
}
#ScaleDataInnerTable .eveningth {
    background-color: #20B2AA60;
}
#ScaleDataInnerTable .totalth {
    font-weight:500;
    background-color: #6d9be9;
}


#ScaleDataInnerTable .morningtd {
    background-color: #00FF0030;
}
#ScaleDataInnerTable .noontd {
    background-color: #ADFF2F30;
}
#ScaleDataInnerTable .eveningtd {
    background-color: #20B2AA30;
}
#ScaleDataInnerTable .totaltd {
    font-weight:500;
    background-color: #1854b85c;
}


#ScaleDataInnerTable .morningtotaltd {
    background:linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2)), #00FF0030;
    color:white;
}
#ScaleDataInnerTable .noontotaltd {
    background:linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2)), #ADFF2F30;
    color:white;
}
#ScaleDataInnerTable .eveningtotaltd {
    background:linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2)), #20B2AA30;
    color:white;
}
#ScaleDataInnerTable .totalfootertd {
    background:linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2)), #9cc1ff30;
    color:white;
}

#ScaleDataInnerTable .ratioth {
    background:#80dcaa;
    color:black;
}
#ScaleDataInnerTable .ratiotd {
    background-color: #00FF0030;
}
#ScaleDataInnerTable .totalfootertd {
    background:linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2)), #9cc1ff30;
    color:white;
}


#table-plucker-weight .morningContent {
    background-color: #00FF0030;
}
#table-plucker-weight .noonContent {
    background-color: #ADFF2F30;
}
#table-plucker-weight .eveningContent {
    background-color: #20B2AA30;
}
#table-plucker-weight .alldayContent {
    background-color: #9cc1ff30;
}

/**
    Loader Icon CSS
 */

@keyframes ldio-yxrqckti2xr {
    0% { opacity: 1 }
    100% { opacity: 0 }
}
.ldio-yxrqckti2xr div {
    left: 99px;
    top: 93px;
    position: absolute;
    animation: ldio-yxrqckti2xr linear 1s infinite;
    background: #1377df;
    width: 2px;
    height: 2px;
    border-radius: 0px / 0px;
    transform-origin: 1px 7px;
}.ldio-yxrqckti2xr div:nth-child(1) {
     transform: rotate(0deg);
     animation-delay: -0.9836065573770492s;
     background: #1377df;
 }.ldio-yxrqckti2xr div:nth-child(2) {
      transform: rotate(5.901639344262295deg);
      animation-delay: -0.9672131147540983s;
      background: #1377df;
  }.ldio-yxrqckti2xr div:nth-child(3) {
       transform: rotate(11.80327868852459deg);
       animation-delay: -0.9508196721311475s;
       background: #1377df;
   }.ldio-yxrqckti2xr div:nth-child(4) {
        transform: rotate(17.704918032786885deg);
        animation-delay: -0.9344262295081968s;
        background: #1377df;
    }.ldio-yxrqckti2xr div:nth-child(5) {
         transform: rotate(23.60655737704918deg);
         animation-delay: -0.9180327868852459s;
         background: #1377df;
     }.ldio-yxrqckti2xr div:nth-child(6) {
          transform: rotate(29.508196721311474deg);
          animation-delay: -0.9016393442622951s;
          background: #1377df;
      }.ldio-yxrqckti2xr div:nth-child(7) {
           transform: rotate(35.40983606557377deg);
           animation-delay: -0.8852459016393442s;
           background: #1377df;
       }.ldio-yxrqckti2xr div:nth-child(8) {
            transform: rotate(41.31147540983606deg);
            animation-delay: -0.8688524590163934s;
            background: #1377df;
        }.ldio-yxrqckti2xr div:nth-child(9) {
             transform: rotate(47.21311475409836deg);
             animation-delay: -0.8524590163934426s;
             background: #1377df;
         }.ldio-yxrqckti2xr div:nth-child(10) {
              transform: rotate(53.114754098360656deg);
              animation-delay: -0.8360655737704918s;
              background: #1377df;
          }.ldio-yxrqckti2xr div:nth-child(11) {
               transform: rotate(59.01639344262295deg);
               animation-delay: -0.819672131147541s;
               background: #1377df;
           }.ldio-yxrqckti2xr div:nth-child(12) {
                transform: rotate(64.91803278688525deg);
                animation-delay: -0.8032786885245902s;
                background: #1377df;
            }.ldio-yxrqckti2xr div:nth-child(13) {
                 transform: rotate(70.81967213114754deg);
                 animation-delay: -0.7868852459016393s;
                 background: #1377df;
             }.ldio-yxrqckti2xr div:nth-child(14) {
                  transform: rotate(76.72131147540983deg);
                  animation-delay: -0.7704918032786885s;
                  background: #1377df;
              }.ldio-yxrqckti2xr div:nth-child(15) {
                   transform: rotate(82.62295081967213deg);
                   animation-delay: -0.7540983606557377s;
                   background: #1377df;
               }.ldio-yxrqckti2xr div:nth-child(16) {
                    transform: rotate(88.52459016393442deg);
                    animation-delay: -0.7377049180327869s;
                    background: #1377df;
                }.ldio-yxrqckti2xr div:nth-child(17) {
                     transform: rotate(94.42622950819673deg);
                     animation-delay: -0.7213114754098361s;
                     background: #1377df;
                 }.ldio-yxrqckti2xr div:nth-child(18) {
                      transform: rotate(100.32786885245902deg);
                      animation-delay: -0.7049180327868853s;
                      background: #1377df;
                  }.ldio-yxrqckti2xr div:nth-child(19) {
                       transform: rotate(106.22950819672131deg);
                       animation-delay: -0.6885245901639344s;
                       background: #1377df;
                   }.ldio-yxrqckti2xr div:nth-child(20) {
                        transform: rotate(112.1311475409836deg);
                        animation-delay: -0.6721311475409836s;
                        background: #1377df;
                    }.ldio-yxrqckti2xr div:nth-child(21) {
                         transform: rotate(118.0327868852459deg);
                         animation-delay: -0.6557377049180327s;
                         background: #1377df;
                     }.ldio-yxrqckti2xr div:nth-child(22) {
                          transform: rotate(123.93442622950819deg);
                          animation-delay: -0.639344262295082s;
                          background: #1377df;
                      }.ldio-yxrqckti2xr div:nth-child(23) {
                           transform: rotate(129.8360655737705deg);
                           animation-delay: -0.6229508196721312s;
                           background: #1377df;
                       }.ldio-yxrqckti2xr div:nth-child(24) {
                            transform: rotate(135.7377049180328deg);
                            animation-delay: -0.6065573770491803s;
                            background: #1377df;
                        }.ldio-yxrqckti2xr div:nth-child(25) {
                             transform: rotate(141.63934426229508deg);
                             animation-delay: -0.5901639344262295s;
                             background: #1377df;
                         }.ldio-yxrqckti2xr div:nth-child(26) {
                              transform: rotate(147.54098360655738deg);
                              animation-delay: -0.5737704918032787s;
                              background: #1377df;
                          }.ldio-yxrqckti2xr div:nth-child(27) {
                               transform: rotate(153.44262295081967deg);
                               animation-delay: -0.5573770491803278s;
                               background: #1377df;
                           }.ldio-yxrqckti2xr div:nth-child(28) {
                                transform: rotate(159.34426229508196deg);
                                animation-delay: -0.5409836065573771s;
                                background: #1377df;
                            }.ldio-yxrqckti2xr div:nth-child(29) {
                                 transform: rotate(165.24590163934425deg);
                                 animation-delay: -0.5245901639344263s;
                                 background: #1377df;
                             }.ldio-yxrqckti2xr div:nth-child(30) {
                                  transform: rotate(171.14754098360655deg);
                                  animation-delay: -0.5081967213114754s;
                                  background: #1377df;
                              }.ldio-yxrqckti2xr div:nth-child(31) {
                                   transform: rotate(177.04918032786884deg);
                                   animation-delay: -0.4918032786885246s;
                                   background: #1377df;
                               }.ldio-yxrqckti2xr div:nth-child(32) {
                                    transform: rotate(182.95081967213116deg);
                                    animation-delay: -0.47540983606557374s;
                                    background: #1377df;
                                }.ldio-yxrqckti2xr div:nth-child(33) {
                                     transform: rotate(188.85245901639345deg);
                                     animation-delay: -0.45901639344262296s;
                                     background: #1377df;
                                 }.ldio-yxrqckti2xr div:nth-child(34) {
                                      transform: rotate(194.75409836065575deg);
                                      animation-delay: -0.4426229508196721s;
                                      background: #1377df;
                                  }.ldio-yxrqckti2xr div:nth-child(35) {
                                       transform: rotate(200.65573770491804deg);
                                       animation-delay: -0.4262295081967213s;
                                       background: #1377df;
                                   }.ldio-yxrqckti2xr div:nth-child(36) {
                                        transform: rotate(206.55737704918033deg);
                                        animation-delay: -0.4098360655737705s;
                                        background: #1377df;
                                    }.ldio-yxrqckti2xr div:nth-child(37) {
                                         transform: rotate(212.45901639344262deg);
                                         animation-delay: -0.39344262295081966s;
                                         background: #1377df;
                                     }.ldio-yxrqckti2xr div:nth-child(38) {
                                          transform: rotate(218.36065573770492deg);
                                          animation-delay: -0.3770491803278688s;
                                          background: #1377df;
                                      }.ldio-yxrqckti2xr div:nth-child(39) {
                                           transform: rotate(224.2622950819672deg);
                                           animation-delay: -0.36065573770491804s;
                                           background: #1377df;
                                       }.ldio-yxrqckti2xr div:nth-child(40) {
                                            transform: rotate(230.1639344262295deg);
                                            animation-delay: -0.3442622950819672s;
                                            background: #1377df;
                                        }.ldio-yxrqckti2xr div:nth-child(41) {
                                             transform: rotate(236.0655737704918deg);
                                             animation-delay: -0.32786885245901637s;
                                             background: #1377df;
                                         }.ldio-yxrqckti2xr div:nth-child(42) {
                                              transform: rotate(241.9672131147541deg);
                                              animation-delay: -0.3114754098360656s;
                                              background: #1377df;
                                          }.ldio-yxrqckti2xr div:nth-child(43) {
                                               transform: rotate(247.86885245901638deg);
                                               animation-delay: -0.29508196721311475s;
                                               background: #1377df;
                                           }.ldio-yxrqckti2xr div:nth-child(44) {
                                                transform: rotate(253.7704918032787deg);
                                                animation-delay: -0.2786885245901639s;
                                                background: #1377df;
                                            }.ldio-yxrqckti2xr div:nth-child(45) {
                                                 transform: rotate(259.672131147541deg);
                                                 animation-delay: -0.26229508196721313s;
                                                 background: #1377df;
                                             }.ldio-yxrqckti2xr div:nth-child(46) {
                                                  transform: rotate(265.57377049180326deg);
                                                  animation-delay: -0.2459016393442623s;
                                                  background: #1377df;
                                              }.ldio-yxrqckti2xr div:nth-child(47) {
                                                   transform: rotate(271.4754098360656deg);
                                                   animation-delay: -0.22950819672131148s;
                                                   background: #1377df;
                                               }.ldio-yxrqckti2xr div:nth-child(48) {
                                                    transform: rotate(277.37704918032784deg);
                                                    animation-delay: -0.21311475409836064s;
                                                    background: #1377df;
                                                }.ldio-yxrqckti2xr div:nth-child(49) {
                                                     transform: rotate(283.27868852459017deg);
                                                     animation-delay: -0.19672131147540983s;
                                                     background: #1377df;
                                                 }.ldio-yxrqckti2xr div:nth-child(50) {
                                                      transform: rotate(289.1803278688525deg);
                                                      animation-delay: -0.18032786885245902s;
                                                      background: #1377df;
                                                  }.ldio-yxrqckti2xr div:nth-child(51) {
                                                       transform: rotate(295.08196721311475deg);
                                                       animation-delay: -0.16393442622950818s;
                                                       background: #1377df;
                                                   }.ldio-yxrqckti2xr div:nth-child(52) {
                                                        transform: rotate(300.9836065573771deg);
                                                        animation-delay: -0.14754098360655737s;
                                                        background: #1377df;
                                                    }.ldio-yxrqckti2xr div:nth-child(53) {
                                                         transform: rotate(306.88524590163934deg);
                                                         animation-delay: -0.13114754098360656s;
                                                         background: #1377df;
                                                     }.ldio-yxrqckti2xr div:nth-child(54) {
                                                          transform: rotate(312.78688524590166deg);
                                                          animation-delay: -0.11475409836065574s;
                                                          background: #1377df;
                                                      }.ldio-yxrqckti2xr div:nth-child(55) {
                                                           transform: rotate(318.6885245901639deg);
                                                           animation-delay: -0.09836065573770492s;
                                                           background: #1377df;
                                                       }.ldio-yxrqckti2xr div:nth-child(56) {
                                                            transform: rotate(324.59016393442624deg);
                                                            animation-delay: -0.08196721311475409s;
                                                            background: #1377df;
                                                        }.ldio-yxrqckti2xr div:nth-child(57) {
                                                             transform: rotate(330.4918032786885deg);
                                                             animation-delay: -0.06557377049180328s;
                                                             background: #1377df;
                                                         }.ldio-yxrqckti2xr div:nth-child(58) {
                                                              transform: rotate(336.39344262295083deg);
                                                              animation-delay: -0.04918032786885246s;
                                                              background: #1377df;
                                                          }.ldio-yxrqckti2xr div:nth-child(59) {
                                                               transform: rotate(342.2950819672131deg);
                                                               animation-delay: -0.03278688524590164s;
                                                               background: #1377df;
                                                           }.ldio-yxrqckti2xr div:nth-child(60) {
                                                                transform: rotate(348.1967213114754deg);
                                                                animation-delay: -0.01639344262295082s;
                                                                background: #1377df;
                                                            }.ldio-yxrqckti2xr div:nth-child(61) {
                                                                 transform: rotate(354.0983606557377deg);
                                                                 animation-delay: 0s;
                                                                 background: #1377df;
                                                             }
.loadingio-spinner-spinner-jpurswk36r {
    width: 200px;
    height: 200px;
    display: inline-block;
    overflow: hidden;
    background: none;
}
.ldio-yxrqckti2xr {
    width: 100%;
    height: 100%;
    position: relative;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0; /* see note above */
}
.ldio-yxrqckti2xr div { box-sizing: content-box; }
/* generated by https://loading.io/ */



/**
    Loader Icon CSS
 */