#reasons_modal {
    display: none;
    z-index: 3000;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    color: #5e5d62;
}

#reasons_modal h2 {
    margin: 0;
    padding: 0 !important;
    color: #5e5d62;
    font-weight: 300;
    font-size: 30px;
    letter-spacing: -0.5px;
}

#reasons_modal .modal-content p {
    margin: 15px 0 12px 0;
    line-height: 22px;
    font-size: 16px;
}

#reasons_modal .modal-content p b {
    font-weight: 400 !important;
}

#reasons_modal .modal-bg {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

#reasons_modal .modal-content {
    width: 930px;
    background-color: white;
    top: 120px;
    left: 26%;

    z-index: 2;
    position: absolute;
    border-radius: 5px 5px 5px 5px;
    -o-border-radius: 5px 5px 5px 5px;
    -ms-border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -khtml-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
}

#reasons_modal[data-scale] .modal-content {
    transition: transform 0.2s linear;
    -o-transition: -o-transform 0.2s linear;
    -ms-transition: -ms-transform 0.2s linear;
    -moz-transition: -moz-transform 0.2s linear;
    -webkit-transition: -webkit-transform 0.2s linear;
    transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
}

#reasons_modal[data-scale="100"] .modal-content {
    transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
}

#reasons_modal[data-scale="30"] .modal-content {
    transform: scale(0.3);
    -o-transform: scale(0.3);
    -ms-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -webkit-transform: scale(0.3);
}

/* model */

#reasons_modal .reason-links {
    display: inline-block;
    white-space: nowrap;
}

#reasons_modal .reason-links .icon {
    width: 26px;
    height: 26px;
    display: inline-block;
    position: relative;
    border: 1px solid #f2612b;

    border-radius: 30px 30px 30px 30px;
    -o-border-radius: 30px 30px 30px 30px;
    -ms-border-radius: 30px 30px 30px 30px;
    -moz-border-radius: 30px 30px 30px 30px;
    -khtml-border-radius: 30px 30px 30px 30px;
    -webkit-border-radius: 30px 30px 30px 30px;
}

#reasons_modal .reason-links a:hover .icon {
    background-color: #f2612b;
}

#reasons_modal .reason-links a:hover .icon:after {
    border-color: white;
}

#reasons_modal .reason-links .icon {
    -webkit-transition: background 0.4s ease;
    float: left;
    margin-right: 10px;
}

#reasons_modal .reason-links a {
    color: #f2612b;
    text-decoration: none;
}

#reasons_modal .reason-links .reason-link-text {
    line-height: 25px;
    font-size: 16px;
}

#reasons_modal .reason-links .icon:after {
    width: 10px;
    height: 10px;
    display: block;
    content: '';
    position: absolute;
    top: 5px;
    left: 7px;
    border-right: 2px solid #f2612b;
    border-bottom: 2px solid #f2612b;

    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -khtml-transform: rotate(45deg);
}

#reasons_modal .reason-desc a {
    color: #f2612b;
}

/*
* modal close
*/
#reasons_modal .modal-close {
    z-index: 3;
    position: absolute;
    right: 4px;
    top: 4px;
    width: 24px;
    height: 24px;
}

#reasons_modal .modal-close,
#reasons_modal .modal-close * {
    cursor: pointer;
}

#reasons_modal .modal-close .modal-close-icon {
    width: 24px;
    height: 24px;
    position: absolute;
    background-image: url(//cdn.wholeworld.org/new/general/icon-24-close.png);
    background-position: center top;
    background-repeat: no-repeat;
}

#reasons_modal .modal-close .modal-close-icon.modal-close-icon-normal {
    /*z-index:            1;*/
    transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    -ms-transition: filter 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -webkit-transition: opacity 0.4s ease;
}

#reasons_modal .modal-close .modal-close-icon.modal-close-icon-hover {
    /*z-index:             2;*/
    background-position: center bottom;
    opacity: 0.0;
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    -o-opacity: 0.0;
    -moz-opacity: 0.0;
    -khtml-opacity: 0.0;
    transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    -ms-transition: filter 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -webkit-transition: opacity 0.4s ease;
}

#reasons_modal .modal-close:hover .modal-close-icon.modal-close-icon-normal {
    opacity: 0.0;
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    -o-opacity: 0.0;
    -moz-opacity: 0.0;
    -khtml-opacity: 0.0;
    transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    -ms-transition: filter 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -webkit-transition: opacity 0.4s ease;
}

#reasons_modal .modal-close:hover .modal-close-icon.modal-close-icon-hover {
    opacity: 1.0;
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    -o-opacity: 1.0;
    -moz-opacity: 1.0;
    -khtml-opacity: 1.0;
    transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    -ms-transition: filter 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -webkit-transition: opacity 0.4s ease;
}

/**/
#reasons_modal .buffer-reason-id {
    display: none;
    z-index: 3006;
    height: 1px !important;
    line-height: 1px !important;
    font-size: 1px !important;
    color: transparent;
    -ms-user-select: auto !important;
    -moz-user-select: auto !important;
    -webkit-user-select: auto !important;
}

#reasons_modal .modal-items {
    /* position: fixed;*/

}

#reasons_modal .modal-title {
    position: absolute;
    top: -103px;
    width: 100%;
    text-align: center;
    z-index: 3001;
    color: white;
    font-size: 36px;
}

#reasons_modal .navigation,
#reasons_modal .navigation:hover,
#reasons_modal .navigation:active {
    text-decoration: none;
    border: none;
}

#reasons_modal .navigation,
#reasons_modal .navigation:hover,
#reasons_modal .navigation:active,
#reasons_modal .navigation *,
#reasons_modal .navigation:hover *,
#reasons_modal .navigation:active * {
    cursor: pointer;
}

#reasons_modal .next {
    display: block;
    position: absolute;
    right: -76px;
    width: 78px;
    height: 100%;
    padding-left: 40px;
}

#reasons_modal .next div {
    width: 38px;
    height: 64px;
    position: absolute;
    top: 50%;
    right: 0;
    background: url(https://cdn.wholeworld.org/reasons/modal.png) repeat -39px 0px;
}

#reasons_modal .next:hover div {
    background: url(https://cdn.wholeworld.org/reasons/modal.png) repeat -39px -65px;
}

#reasons_modal .reason-links .open {
    display: none;
}

#reasons_modal .prev {
    display: block;
    width: 78px;
    height: 100%;
    position: absolute;
    left: -78px;
    padding-right: 40px;
}

#reasons_modal .prev div {
    width: 38px;
    height: 64px;
    background: url(https://cdn.wholeworld.org/reasons/modal.png) repeat 0px 0px;
    position: absolute;
    top: 50%;
}

#reasons_modal .prev:hover,
#reasons_modal .next:hover {
    cursor: pointer;
}

#reasons_modal .prev:hover div {
    background: url(https://cdn.wholeworld.org/reasons/modal.png) repeat -0px 64px;
}

#reasons_modal .reason-item .reason-number {
    display: none;

}

#reasons_modal .reason-item .reason-title {
    position: absolute;
    top: -30px;
    right: 50%;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    font-size: 36px;
}

#reasons_modal .reason-item .reason-title .buffer {
    border-bottom: none !important;
}

.reason-buffer-tip {
    width: 260px;
    text-align: center;
}

.reason-buffer-tip>div {
    display: inline-block;
    padding: 4px 9px 6px;
    text-align: center;
    white-space: nowrap;
    color: #fff;
    background: #000;
    box-shadow: none;
    border-radius: 4px;
}

.reason-buffer-tip .before {
    display: none;
    padding-left: 25px !important;
    background: url(https://cdn.wholeworld.org/images/personal_info_mod/approved.png) #000 no-repeat 5px 4px !important;
}

.reason-buffer-tip.before .before {
    display: inline-block;
}

.reason-buffer-tip.before .after {
    display: none;
}

/* стили reason  */
#reasons_modal .reason-item {
    position: relative;
}

#reasons_modal .reason {
    height: 365px;
    width: 854px;
    position: relative;
    margin: auto;
}

#reasons_modal .buffer-link-img {
    width: 21px;
    height: 21px;
    background-image: url('https://cdn.wholeworld.org/reasons/modal.png');
    background-position: -77px 0;
    display: inline-block;
    margin-left: 15px;
}

#reasons_modal .reason-content {

    position: relative;
    top: -50px;
    display: table-cell;
    vertical-align: middle;
    height: 365px;
    width: 854px;
}

#reasons_modal div.modal-loader {
    position: fixed;
    top: 30%;
    left: 43%;
    z-index: 3005;
    width: 250px;
    height: 250px;
    background: url('https://cdn.wholeworld.org/new/general/wait3.gif') center center no-repeat
        /*border-radius:    100%;*/
        /*background-color: red;*/
}

#reasons_modal .right .reason-content-wrapper {
    float: right;
}

#reasons_modal .left .reason-bg {
    right: 0;
}

#reasons_modal .reason-title {
    width: 335px !important;
    border-radius: 5px !important;
    position: relative !important;
    margin: auto !important;
    right: 0 !important;
    font-size: 30px !important;
    line-height: 50px !important;
    height: 50px !important;
    z-index: 1;
}

#reasons_modal .reason-title a {
    text-decoration: none;
    color: white;
    border-radius: 5px;
    display: block;
}

#reasons_modal .reason-title a,
#reasons_modal .reason-title a:hover,
#reasons_modal .reason-title a:active {
    text-decoration: none;
    border: none;
}

#reasons_modal .reason-title a,
#reasons_modal .reason-title a:hover,
#reasons_modal .reason-title a:active,
#reasons_modal .reason-title a *,
#reasons_modal .reason-title a:hover *,
#reasons_modal .reason-title a:active * {
    cursor: pointer;
}

#reasons_modal .reason-title img {
    margin-left: 10px;
}

#reasons_modal .modal-slides {
    width: 100%;
    height: 115px;
    position: absolute;
    z-index: 3002;
    left: 0;
    text-align: center;
    overflow: hidden;
    bottom: 0;
    padding-top: 30px;
    white-space: nowrap;
}

#reasons_modal .modal-slides>ul {
    margin-top: 0;
}

#reasons_modal .modal-slides li {
    display: inline-block;
}

#reasons_modal .modal-slides a {
    width: 170px;
    height: 87px;
    display: block;
    cursor: pointer;
}

#reasons_modal .reason-links .icon:after {
    margin-top: 2px;
    border-top: 2px solid #f2612b;
    border-left: 2px solid #f2612b;
    top: 8px;
    border-right: 0 solid #f2612b;
    border-bottom: 0 solid #f2612b;
}

#reasons_modal a:hover .icon:after {
    border-color: white;
}

#reasons_modal .reason-bg {
    position: absolute;
    top: 0;
    z-index: -1;
    height: 365px;
}

#reasons_modal .reason-desc {
    position: relative;
    overflow: auto;
    padding: 20px 40px 40px 40px;
    font-size: 16px;
    border-top: 1px solid #7dcb70;
}

#reasons_modal .reason-desc .bt2.orange {
    margin-left: -3px;
    color: #fff !important;
}

#reasons_modal .reason-desc .as_link:hover,
#reasons_modal .reason-desc .as_link:active {
    cursor: pointer;
    text-decoration: underline;
}

#reasons_modal #reason-1 .reason-title {
    background-color: #09867e;
}

#reasons_modal #reason-2 .reason-title {
    background-color: #fe012f;
}

#reasons_modal #reason-3 .reason-title {
    background-color: #0076a3;
}

#reasons_modal #reason-4 .reason-title {
    background-color: #80c9dd;
}

#reasons_modal #reason-5 .reason-title {
    background-color: #78c96a;
}

#reasons_modal #reason-6 .reason-title {
    background-color: #e57716;
}

#reasons_modal #reason-7 .reason-title {
    background-color: #ca4b03;
}

#reasons_modal #reason-8 .reason-title {
    background-color: #0276c4;
}

#reasons_modal #reason-9 .reason-title {
    background-color: #f00;
}

#reasons_modal #reason-10 .reason-title {
    background-color: #2c61a2;
}

#reasons_modal #reason-11 .reason-title {
    background-color: #3b8c01;
}

#reasons_modal #reason-12 .reason-title {
    background-color: #fa6126;
}

#reasons_modal #reason-13 .reason-title {
    background-color: #8a6a98;
}

#reasons_modal #reason-14 .reason-title {
    background-color: #3d5b7b;
}

#reasons_modal #reason-15 .reason-title {
    background-color: #c31617;
}

#reasons_modal #reason-16 .reason-title {
    background-color: #3e597f;
}

#reasons_modal #reason-17 .reason-title {
    background-color: #3b8874;
}

#reasons_modal #reason-18 .reason-title {
    background-color: #5cb94c;
}

#reasons_modal #reason-19 .reason-title {
    background-color: #415e9b;
}

#reasons_modal #reason-20 .reason-title {
    background-color: #0d8597;
}

#reasons_modal #reason-21 .reason-title {
    background-color: #56a848;
}

#reasons_modal #reason-22 .reason-title {
    background-color: #467593;
}

#reasons_modal #reason-23 .reason-title {
    background-color: #60bbe6;
}

#reasons_modal #reason-24 .reason-title {
    background-color: #7e3022;
}

#reasons_modal #reason-25 .reason-title {
    background-color: #8f2915;
}

#reasons_modal #reason-26 .reason-title {
    background-color: #38762d;
}

#reasons_modal #reason-27 .reason-title {
    background-color: #467b60;
}

#reasons_modal #reason-28 .reason-title {
    background-color: #c16e26;
}

#reasons_modal #reason-29 .reason-title {
    background-color: #4f66e9;
}

#reasons_modal #reason-30 .reason-title {
    background-color: #c11724;
}

#reasons_modal #reason-31 .reason-title {
    background-color: #29a83c;
}

#reasons_modal #reason-32 .reason-title {
    background-color: #df6b1e;
}

#reasons_modal #reason-33 .reason-title {
    background-color: #3d659a;
}

#reasons_modal #reason-34 .reason-title {
    background-color: #489b5f;
}

#reasons_modal #reason-35 .reason-title {
    background-color: #60559f;
}

#reasons_modal #reason-36 .reason-title {
    background-color: #f76232;
}

#reasons_modal #reason-37 .reason-title {
    background-color: #31587d;
}

#reasons_modal #reason-38 .reason-title {
    background-color: #688e29;
}

#reasons_modal #reason-39 .reason-title {
    background-color: #1f74a9;
}

#reasons_modal #reason-40 .reason-title {
    background-color: #1f74a9;
}

#reasons_modal #reason-41 .reason-title {
    background-color: #cb5c2e;
}

#reasons_modal #reason-42 .reason-title {
    background-color: #a8060e;
}

#reasons_modal #reason-43 .reason-title {
    background-color: #ba4f25;
}

#reasons_modal #reason-44 .reason-title {
    background-color: #487397;
}

#reasons_modal #reason-45 .reason-title {
    background-color: #37afc1;
}

#reasons_modal #reason-46 .reason-title {
    background-color: #639659;
}

#reasons_modal #reason-47 .reason-title {
    background-color: #97297e;
}

#reasons_modal #reason-48 .reason-title {
    background-color: #3b8a4e;
}

#reasons_modal #reason-49 .reason-title {
    background-color: #3b8a4e;
}

#reasons_modal #reason-50 .reason-title {
    background-color: #2472c6;
}

#reasons_modal .modal-slide-1 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -0px -85px;
}

#reasons_modal .modal-slide-1.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -0px -0px;
}

#reasons_modal .modal-slide-1:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -0px 0px;
}

#reasons_modal .modal-slide-2 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -171px -85px;
}

#reasons_modal .modal-slide-2.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -171px -0px;
}

#reasons_modal .modal-slide-2:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -171px 0px;
}

#reasons_modal .modal-slide-3 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -342px -85px;
}

#reasons_modal .modal-slide-3.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -342px -0px;
}

#reasons_modal .modal-slide-3:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -342px 0px;
}

#reasons_modal .modal-slide-4 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -513px -85px;
}

#reasons_modal .modal-slide-4.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -513px -0px;
}

#reasons_modal .modal-slide-4:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -513px 0px;
}

#reasons_modal .modal-slide-5 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -684px -85px;
}

#reasons_modal .modal-slide-5.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -684px -0px;
}

#reasons_modal .modal-slide-5:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -684px 0px;
}

#reasons_modal .modal-slide-6 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -855px -85px;
}

#reasons_modal .modal-slide-6.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -855px -0px;
}

#reasons_modal .modal-slide-6:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -855px 0px;
}

#reasons_modal .modal-slide-7 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -1026px -85px;
}

#reasons_modal .modal-slide-7.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -1026px -0px;
}

#reasons_modal .modal-slide-7:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -1026px 0px;
}

#reasons_modal .modal-slide-8 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -1197px -85px;
}

#reasons_modal .modal-slide-8.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -1197px -0px;
}

#reasons_modal .modal-slide-8:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -1197px 0px;
}

#reasons_modal .modal-slide-9 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -1368px -85px;
}

#reasons_modal .modal-slide-9.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -1368px -0px;
}

#reasons_modal .modal-slide-9:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -1368px 0px;
}

#reasons_modal .modal-slide-10 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -1539px -85px;
}

#reasons_modal .modal-slide-10.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -1539px -0px;
}

#reasons_modal .modal-slide-10:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -1539px 0px;
}

#reasons_modal .modal-slide-11 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -1710px -85px;
}

#reasons_modal .modal-slide-11.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -1710px -0px;
}

#reasons_modal .modal-slide-11:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -1710px 0px;
}

#reasons_modal .modal-slide-12 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -1881px -85px;
}

#reasons_modal .modal-slide-12.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -1881px -0px;
}

#reasons_modal .modal-slide-12:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -1881px 0px;
}

#reasons_modal .modal-slide-13 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -2052px -85px;
}

#reasons_modal .modal-slide-13.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -2052px -0px;
}

#reasons_modal .modal-slide-13:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -2052px 0px;
}

#reasons_modal .modal-slide-14 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -2223px -85px;
}

#reasons_modal .modal-slide-14.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -2223px -0px;
}

#reasons_modal .modal-slide-14:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -2223px 0px;
}

#reasons_modal .modal-slide-15 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -2394px -85px;
}

#reasons_modal .modal-slide-15.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -2394px -0px;
}

#reasons_modal .modal-slide-15:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -2394px 0px;
}

#reasons_modal .modal-slide-16 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -2565px -85px;
}

#reasons_modal .modal-slide-16.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -2565px -0px;
}

#reasons_modal .modal-slide-16:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -2565px 0px;
}

#reasons_modal .modal-slide-17 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -2736px -85px;
}

#reasons_modal .modal-slide-17.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -2736px -0px;
}

#reasons_modal .modal-slide-17:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -2736px 0px;
}

#reasons_modal .modal-slide-18 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -2907px -85px;
}

#reasons_modal .modal-slide-18.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -2907px -0px;
}

#reasons_modal .modal-slide-18:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -2907px 0px;
}

#reasons_modal .modal-slide-19 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -3078px -85px;
}

#reasons_modal .modal-slide-19.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -3078px -0px;
}

#reasons_modal .modal-slide-19:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -3078px 0px;
}

#reasons_modal .modal-slide-20 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -3249px -85px;
}

#reasons_modal .modal-slide-20.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -3249px -0px;
}

#reasons_modal .modal-slide-20:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -3249px 0px;
}

#reasons_modal .modal-slide-21 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -3420px -85px;
}

#reasons_modal .modal-slide-21.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -3420px -0px;
}

#reasons_modal .modal-slide-21:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -3420px 0px;
}

#reasons_modal .modal-slide-22 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -3591px -85px;
}

#reasons_modal .modal-slide-22.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -3591px -0px;
}

#reasons_modal .modal-slide-22:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -3591px 0px;
}

#reasons_modal .modal-slide-23 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -3762px -85px;
}

#reasons_modal .modal-slide-23.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -3762px -0px;
}

#reasons_modal .modal-slide-23:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -3762px 0px;
}

#reasons_modal .modal-slide-24 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -3933px -85px;
}

#reasons_modal .modal-slide-24.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -3933px -0px;
}

#reasons_modal .modal-slide-24:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -3933px 0px;
}

#reasons_modal .modal-slide-25 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -4104px -85px;
}

#reasons_modal .modal-slide-25.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -4104px -0px;
}

#reasons_modal .modal-slide-25:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -4104px 0px;
}

#reasons_modal .modal-slide-26 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -4275px -85px;
}

#reasons_modal .modal-slide-26.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -4275px -0px;
}

#reasons_modal .modal-slide-26:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -4275px 0px;
}

#reasons_modal .modal-slide-27 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -4446px -85px;
}

#reasons_modal .modal-slide-27.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -4446px -0px;
}

#reasons_modal .modal-slide-27:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -4446px 0px;
}

#reasons_modal .modal-slide-28 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -4617px -85px;
}

#reasons_modal .modal-slide-28.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -4617px -0px;
}

#reasons_modal .modal-slide-28:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -4617px 0px;
}

#reasons_modal .modal-slide-29 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -4788px -85px;
}

#reasons_modal .modal-slide-29.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -4788px -0px;
}

#reasons_modal .modal-slide-29:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -4788px 0px;
}

#reasons_modal .modal-slide-30 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -4959px -85px;
}

#reasons_modal .modal-slide-30.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -4959px -0px;
}

#reasons_modal .modal-slide-30:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -4959px 0px;
}

#reasons_modal .modal-slide-31 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -5130px -85px;
}

#reasons_modal .modal-slide-31.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -5130px -0px;
}

#reasons_modal .modal-slide-31:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -5130px 0px;
}

#reasons_modal .modal-slide-32 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -5301px -85px;
}

#reasons_modal .modal-slide-32.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -5301px -0px;
}

#reasons_modal .modal-slide-32:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -5301px 0px;
}

#reasons_modal .modal-slide-33 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -5472px -85px;
}

#reasons_modal .modal-slide-33.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -5472px -0px;
}

#reasons_modal .modal-slide-33:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -5472px 0px;
}

#reasons_modal .modal-slide-34 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -5643px -85px;
}

#reasons_modal .modal-slide-34.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -5643px -0px;
}

#reasons_modal .modal-slide-34:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -5643px 0px;
}

#reasons_modal .modal-slide-35 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -5814px -85px;
}

#reasons_modal .modal-slide-35.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -5814px -0px;
}

#reasons_modal .modal-slide-35:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -5814px 0px;
}

#reasons_modal .modal-slide-36 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -5985px -85px;
}

#reasons_modal .modal-slide-36.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -5985px -0px;
}

#reasons_modal .modal-slide-36:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -5985px 0px;
}

#reasons_modal .modal-slide-37 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -6156px -85px;
}

#reasons_modal .modal-slide-37.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -6156px -0px;
}

#reasons_modal .modal-slide-37:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -6156px 0px;
}

#reasons_modal .modal-slide-38 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -6327px -85px;
}

#reasons_modal .modal-slide-38.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -6327px -0px;
}

#reasons_modal .modal-slide-38:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -6327px 0px;
}

#reasons_modal .modal-slide-39 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -6498px -85px;
}

#reasons_modal .modal-slide-39.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -6498px -0px;
}

#reasons_modal .modal-slide-39:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -6498px 0px;
}

#reasons_modal .modal-slide-40 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -6669px -85px;
}

#reasons_modal .modal-slide-40.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -6669px -0px;
}

#reasons_modal .modal-slide-40:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -6669px 0px;
}

#reasons_modal .modal-slide-41 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -6840px -85px;
}

#reasons_modal .modal-slide-41.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -6840px -0px;
}

#reasons_modal .modal-slide-41:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -6840px 0px;
}

#reasons_modal .modal-slide-42 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -7011px -85px;
}

#reasons_modal .modal-slide-42.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -7011px -0px;
}

#reasons_modal .modal-slide-42:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -7011px 0px;
}

#reasons_modal .modal-slide-43 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -7182px -85px;
}

#reasons_modal .modal-slide-43.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -7182px -0px;
}

#reasons_modal .modal-slide-43:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -7182px 0px;
}

#reasons_modal .modal-slide-44 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -7353px -85px;
}

#reasons_modal .modal-slide-44.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -7353px -0px;
}

#reasons_modal .modal-slide-44:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -7353px 0px;
}

#reasons_modal .modal-slide-45 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -7524px -85px;
}

#reasons_modal .modal-slide-45.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -7524px -0px;
}

#reasons_modal .modal-slide-45:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -7524px 0px;
}

#reasons_modal .modal-slide-46 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -7695px -85px;
}

#reasons_modal .modal-slide-46.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -7695px -0px;
}

#reasons_modal .modal-slide-46:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -7695px 0px;
}

#reasons_modal .modal-slide-47 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -7866px -85px;
}

#reasons_modal .modal-slide-47.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -7866px -0px;
}

#reasons_modal .modal-slide-47:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -7866px 0px;
}

#reasons_modal .modal-slide-48 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -8037px -85px;
}

#reasons_modal .modal-slide-48.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -8037px -0px;
}

#reasons_modal .modal-slide-48:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -8037px 0px;
}

#reasons_modal .modal-slide-49 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -8208px -85px;
}

#reasons_modal .modal-slide-49.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -8208px -0px;
}

#reasons_modal .modal-slide-49:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -8208px 0px;
}

#reasons_modal .modal-slide-50 {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -8379px -85px;
}

#reasons_modal .modal-slide-50.active {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -8379px -0px;
}

#reasons_modal .modal-slide-50:hover {
    background: url('https://cdn.wholeworld.org/reasons/modal_sprite.png') no-repeat -8379px 0px;
}
