
html{
    height: 100%;
}
body{
    margin: 0 auto;
    width: 100%;
    height: 100%;
    background-color: #e7e7e7;
    max-width: 1280px;
    min-width: 980px;
    position: relative;
    font-family: 'frutiger', Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}

@-webkit-keyframes bg {
    0% {
        -webkit-transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.3);
    }
    100% {
        -webkit-transform: scale(1);
    }
}

/* Standard syntax */
@keyframes bg {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}


@-webkit-keyframes man {
    0% {
        -webkit-transform: scale(0.8);
    }
    50% {
        -webkit-transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(0.8);
    }
}

/* Standard syntax */
@keyframes man {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}


a{
    color: #8198ed;
    display: inline-block;
    line-height: 1em;
    border-bottom: 1px solid #8198ED;
    text-decoration: none;
}
a:hover{
    color: #23b729;
    border-bottom-color: #23b729;
}

span.light{
    opacity: 0.7;
}


.main{
    min-height: 100%;
    position: relative;
    background: #fff;
}

.page{
    width: 100%;

    overflow: hidden;
    position: relative;
    z-index: 3;
    margin: 0 auto;
}

.page_backstage{
    z-index: 2;
}

.page_white{
    background-color:white;
}
.page_gray{
    background-color:#f4f4f4;
}
.page_slider{
    /* overflow: visible; */
    z-index:4;
    margin: -20px 0;
    padding: 20px 0;
}

.welcome{
    height:630px;
    overflow: hidden;
}

.white-text{
    color:white;
}
.black-text{
    color:#3d3d3d;
}
.regular-text{
    font-weight: normal;
}

.welcome__fixed{
    height: 630px;
    width: 100%;
    position: fixed;
    z-index: 2;
    top: 0;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);

    max-width: 1280px;
    min-width: 980px;
}
.welcome__fixed__bg{
    width: 100%;
    position: absolute;
    z-index: 1;
    bottom: 0;
    overflow: hidden;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;

    -webkit-animation-name: bg;
    -webkit-animation-duration: 35s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    -webkit-animation-play-state: running;
}
.welcome__fixed__man{
    position:absolute;
    width: 740px;
    /* height: 911px; */
    top: -50px;
    left: 47%;

    -webkit-transform-origin: 70% 50%;
    -moz-transform-origin: 70% 50%;
    -ms-transform-origin: 70% 50%;
    -o-transform-origin: 70% 50%;
    transform-origin: 70% 50%;

    /* Chrome, Safari, Opera */

    -webkit-animation-name: man;
    -webkit-animation-duration: 35s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    -webkit-animation-play-state: running;
    /* Standard syntax */
    animation-name: man;
    animation-duration: 28s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-play-state: running;

    margin-left: -390px;
    z-index: 2;
}
@media screen and (min-width:0\0) {
    .welcome__fixed__man{
        animation-name: none;
        left: 55%;
        top: 20px;
        width: 570px;
    }
    .welcome__fixed__bg{
        animation-name: none;
        right: 0px;
        width: 110%;
    }
}
.welcome__static-wrapper{
    position: relative;
    z-index:2;
    height: 100%;
}
.welcome__logo{
    text-decoration: none;

    border: 0;
    position: absolute;
    left: 38px;
    top: 24px;
}
.welcome__center-text{
    font-weight: bold;
    color: white;
    position: absolute;
    bottom: 80px;
    width: 100%;
    text-align: center;
    font-size: 70px;
}
.welcome__center-text span{
    color:#ffd801;
}
.welcome__center-date{
    position: absolute;
    bottom: 50px;
    width: 100%;
    color: white;
    text-align: center;
    font-weight: 200;
    font-size: 18px;
}
.welcome__right{
    left: 40px;
    position: absolute;
    bottom: 51px;
    font-size: 18px;
    font-weight: 200;
    color: #b3b3b3;
    border-bottom-color: #6B6B6B;
}
.welcome__right:hover{
    opacity:1;
}

.top-menu{
    position: absolute;
    max-width: 1280px;
    min-width: 980px;
    width: 100%;
    margin: 0 auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 71px;
    line-height: 71px;
    z-index: 99;
}
.top-menu_float{
    position: fixed;
    background-color: #444444;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
    transform: translateZ(0px);
    left: auto;
}
.top-menu__logo{
    display: none;
    border-bottom: none;
    vertical-align: -8px;
    margin-left: 23px;
}
.top-menu_float .top-menu__logo{
    display:inline-block;
}
.top-menu__links{
    float: right;
    margin-right: 7px;
}
.top-menu__links__item{
    float: left;
    margin-right: 28px;
    position: relative;
    overflow: hidden;
}
.top-menu__links__item.prizes a{
    color: #2e2e2f;
    display: inline-block;
    background: #ffd801;
    padding: 9px 11px;
    border-radius: 2px;
    font-weight: 400;
}
.top-menu__links__item.prizes a:hover{
    color: #1e1e1f;
}

.top-menu__links__item a{
    color: #ECECEC;
    border-bottom: 0px;
    font-weight: 100;
    border-bottom-color: #ECECEC;
}
.top-menu__links__item a:hover{
    color:white;
    border-bottom-color: white;
}
.top-menu__links__item:hover{
    overflow: visible;
}


.top-menu__links__item:hover .commitee{
    opacity: 1;
    margin-top: -8px;
    visibility: visible;
}
.commitee{
    position: absolute;
    visibility: hidden;
    background: #f4f4f4;
    line-height: normal;
    padding: 20px 40px 35px;
    text-align: center;
    white-space: nowrap;
    margin-top: -18px;
    left: -100px;
    text-align: center;
    width: 204px;

    opacity: 0;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.11);
    -webkit-transition: margin-top 0.3s, opacity 0.3s;
}
.commitee::after{
    display: block;
    content: "";
    width: 0px;
    border-bottom: 10px solid #f4f4f4;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -10px;
}


.commitee__person{
    font-size: 14px;
    font-weight: 200;
    line-height: 21px;
    margin-top: 33px;
}
.commitee > p,
.commitee__person p{
    margin-bottom: 0px;
    font-size: 18px;
    font-weight: 400;
    margin-top: 7px;
}
.commitee > p{
    text-align: center;
    white-space: normal;
}
.commitee__person img{
    border-radius: 50px;
    height: 57px;
    width: 57px;
}
.commitee__person a,
.commitee__person a:hover{
    color: #013ece;
    border-bottom: 1px solid #627bd8;
}



.tiles{

    overflow: hidden;
}
.tiles__half{
    float: left;

    width: 50%;
}
.tile{
    background-color: #f2f2f2;
    font-weight: 200;
    border-bottom: none;
    font-size:14px;
    position: relative;
    color:black !important;
    height: 226px;
}
.tile__image{
    margin-right: 273px;

    position: relative;
    height: 100%;
    background-position: center;
}
.tile__image img{
    left: 0;

    right: 0;
    position: absolute;
    margin: 0 auto;
}
.tile__content{
    position: absolute;
    right:0;
    top:0;
    height:100%;
    background-color:inherit;
    width:273px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15px 20px 0;
    z-index: 2;
}
.tile__header{
    font-size:18px;
    line-height: 21px;
    margin-bottom: 13px;
}
.tile__header b{
    font-weight: 500;
}
.tile__content p{
    line-height: 1.2em;
    margin: 0.6em 0;
}
.tile__content p b{
    font-weight: normal;
}


/* INVITE */

.invite{
    padding: 94px 80px 99px;
    color: #515151;
    text-align: center;
}
.invite__image{
    margin-top: 80px;
}

.header-big{
    margin-bottom: 30px;
    text-align: center;
    line-height: 66px;
}
.header-big, .header-big a{
    font-size: 40px;
    font-weight: 100;
}

.header-big b {
    font-weight: 400;
}
.header-middle{
    line-height: 36px;
    text-align: center;
    margin-bottom: 30px;
}

.header-middle p {
    margin-top: 0;
    margin-bottom: 47px;
}
.header-middle, .header-middle a {
    font-size: 23px;
    font-weight: 100;
}
.header-big.dark, .header-middle.dark{
    color: #3d3d3d;
}

p.header-small{
    margin-top: auto;
}

.participate .header-small {
    margin-top: 41px;
    font-size: 23px;
    line-height: 36px;
    max-width: none;
    width: 620px;
}

.participate .header-small a {
    font-size: inherit;
}
.header-small{
    line-height: 26px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 25px;
    color: #3d3d3d;
    margin-top: 58px;
    max-width: 740px;
}
.header-small, .header-small a {
    font-size: 18px;
    font-weight: 100;
}


.invite__partners{
    overflow: hidden;
    padding-top: 15px;
    text-align: center;
    letter-spacing: 90px;
}
.invite__partner{
    width: 250px;
    vertical-align: top;
    line-height: 26px;
    letter-spacing: normal;
    text-align: center;
    font-size: 18px;
    font-weight: 200;
    display: inline-block;
}





/* BANNER */
.banner{
    /* height: 250px; */
    display:block;
    text-decoration: none;

    overflow: hidden;
    position: relative;
}
.banner_background-purple, .banner_background-purple:hover{
    background-color: #37006f;
    color: #bbb4d4;
}
.banner_background-blue, .banner_background-blue:hover{
    background-color: #110066;
    color: white;
}
.banner_background-green, .banner_background-green:hover{
    background-color: #c7ffc0;
}
.banner_background-fixed{
    background-color: black;
    background-position: center;
    /* height: 470px; */
    background-attachment: fixed;
    -webkit-background-attachment: fixed;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: white;
    /* transform: translateZ(0); */
    position: absolute;
}
.device-ios .banner_background-fixed{
    background-size: 100%;
}
.banner__background{
    position: absolute;

    top: 50%;
    margin-top: -125px;
    left: 50%;
    margin-left: -720px;
    z-index: 1;
}
.banner__content{
    position: relative;
    z-index: 2;
    /* width: 1250px; */
    margin: 0 auto;
    padding: 110px 80px 0;
    /* height: 100%; */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* height: 100%; */
    background-repeat: repeat-x;
    background-position: 0 100%;
    color: white;
}

.banner__header{
    font-size: 46px;
    text-align: center;
    font-weight: 100;
    line-height: 69px;
    position: relative;
    z-index: 2;
}

.banner__top {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 383px;
    background-repeat: repeat-x;
    z-index: 1;
}

.banner__header b {
    font-weight: 400;
}
.banner__body{
    text-align: center;
    box-sizing: border-box;
    white-space: nowrap;
    letter-spacing: 50px;
    margin: 0 -80px;
    padding-top: 120px;
    padding-bottom: 106px;
    background-repeat: repeat-x;
    /* background-position: bottom; */
}

.banner__body__text {
    letter-spacing: normal;
    font-weight: 100;
    font-size: 23px;
    line-height: 36px;
}

.banner__body__text a:hover {
    color: #23b729;
    border-bottom-color: #23b729;
}
.banner__body__text a {
    color: #f1dd00;
    border-bottom-color: #f1dd00;
}

.banner__medals {
    margin-top: 30px;
    letter-spacing: 140px;
    margin-bottom: -63px;
}

.banner__location{
    width: 25%;
    text-align: center;
    display: inline-block;
    letter-spacing: normal;
    white-space: normal;
    text-align: left;
    vertical-align: top;
    line-height: normal;
    margin-top: 31px;
    box-sizing: border-box;
    padding: 0 3%;
}
.banner__locations_3 .banner__location{
    width: 33.3%;
    padding: 0 7%;
}

.banner__location-white {
    width: 100%;
    display: inline-block;
}

.banner__locations {
    white-space: normal;
    text-align: justify;
    padding: 0 3.3%;
    line-height: 29px;
    font-size: 0;
    letter-spacing: -4px;
}

.banner__body__text + .banner__locations {
    margin-top: 67px;
    /* margin-bottom: -63px; */
}

.location__name{
    font-size: 18px;
    margin-bottom: 3px;
    font-weight: 400;
    white-space: nowrap;
}
.location__address{
    font-weight: 100;
    font-size: 16px;
    margin: 0;
    line-height: 21px;
    white-space: nowrap;
}

.location a{
    color: #f1dd00;
    border-bottom-color: #f1dd00;
}

.location a:hover{
    color: #23b729;
    border-bottom-color: #23b729;
}



/* AD */
.ad{
    padding: 50px;
    color: #3d3d3d;
}
.ad__header{
    margin-bottom: 60px;
    line-height: 70px;
}

.ad__header, .ad__header a {
    font-size: 46px;
}

.ad__header {
    padding: 30px 10px 0;
}

.ad__header a {
    font-weight: 400;
    color: #3f69ee;
}

.ad__header a:hover {
    color: #23b729;
}
.ad__image{
    position: relative;
    display: block;
    margin: 0 auto 68px;
}




.participate{
    padding: 50px;
    text-align: center;
    font-size: 18px;
    font-weight: 200;
    line-height: 26px;
    color: #3d3d3d;
}

.participate .header-big{
    margin-bottom: 10px;
    font-size: 46px;
    margin-top: 27px;
    font-weight: 100;
    color: inherit;
}

.participate__wrapper{
    background: #f4f4f4;
    font-size: 16px;
    font-weight: 100;
    text-align: left;
    padding: 5px 25px;
    position: relative;
    width: 630px;
    margin: 65px auto 60px;
    color: #3d3d3d;
    line-height: 22px;
}
.participate__form{
}
.participate__form__table{
    border-spacing: 20px;
    display: table;
}
.participate__form__handicap{
    overflow: hidden;
    margin-bottom: 25px;
    margin-top: 33px;
    padding-right: 10px;
}
.participate__form__colspan{
    padding: 0px 20px 0;
}
.participate__form__colspan p{margin-bottom: 0;}
.participate__form__colspan p:last-of-type{margin-bottom: 0px;}
.participate__form__colspan .participate__form__header{margin-top: 20px;}
.handicap__col{
    float: left;
    width: 25%;
}

.participate__form__handicap_3 .handicap__col {
    width: 32%;
}
.handicap__col label{
    display: inline-block;
    vertical-align: top;
}
.handicap__dynamic{
    font-weight: 600;
}

.participate__form__header{
    font-weight: 500;
    margin-bottom: 3px;
    line-height: 21px;
}
.participate__form__field{
    display: table-row;
    margin-bottom: 20px;
}

.newplayer__col {
    float: left;
    font-size: 18px;
    width: 50%;
}

.newplayer__col label {
    margin-left: 36px;
    display: block;
    line-height: 26px !important;
}

.newplayer__col input {
float: left;width: 18px;height: 20px;margin-left: 0;}

.participate__form__newplayer {
    overflow: hidden;
    padding: 60px 20px 28px;
}
.participate__form__label, .participate__form__input{
    display: table-cell;
}
.participate__form__label{
    width: 175px;
    line-height: 21px;
    vertical-align: top;
    padding-top: 6px;
}
.participate__form__input input[type=text],
.participate__form__input input[type=number],
.participate__form__input input[type=password]{
    border: 2px solid #e6e6e6;
    height: 20px;
    padding: 5px;
    font-family: 'frutiger', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 300;
}

.participate__form__input input[type=text]:disabled,
.participate__form__input input[type=number]:disabled,
.participate__form__input input[type=password]:disabled{opacity: 0.6;}
.participate__form__input input[name="nohandicap"] {
    margin-left: 0;
    margin-top: 14px;
}

input#form_nohandicap {}

label[for="form_nohandicap"] {font-size: 14px;vertical-align: baseline;}

.participate__form input[type=radio]{
    margin-right: 7px;
    display: inline-block;
    position: relative;
    vertical-align: text-top;
    width: 18px;
    height: 18px;
}
.participate__form input[type=radio] + label{
    vertical-align: bottom;
    line-height: 24px;
}
.participate__form input[type=radio]:disabled,
.participate__form input[type=radio]:disabled + label{
    opacity:0.5;
}
.participate__form input.error{
    border-color: #ef939a;
}
.participate__form label.error{
    visibility: hidden;
    position: absolute;
}
.participate__form input[type=radio].error::before{
    content: "";
    display: block;
    position: absolute;
    border-radius: 16px;
    width: 12px;
    height: 12px;
    background: red;
    opacity: 0.2;
}

.participate__form__handicap input[type=radio]{
    vertical-align: top;
}



.participate__form__file{
    background: #e5e5e5;
    padding: 7px 13px;
    border-radius: 3px;
    overflow: hidden;
    display: inline-block;
    position: relative;
    text-overflow: ellipsis;
    cursor: default;
}
.participate__form__file.error{background-color: #f7c0bb;}
.participate__form__file:hover{background-color: #dedede;}
.participate__form__file.error:hover{background-color: #f7bbb6;}
.participate__form__file input{
    position: absolute;
    opacity: 0;
    width: 200px;
    height: 100px;
    left: 0px;
    top: 0px;
}


.participate__form__notice{
    font-size: 14px;
    margin: 0;
    margin-top: 7px;
    line-height: 16px;
}

p.participate__form__notice {}
.participate__form__footer{
    text-align: center;
    font-size: 18px;
    padding: 20px 0 60px;
    line-height: 30px;
}
.participate__form__submit{
    margin-top: 35px;
    font-size: 18px;
    color: #fff;
    background-color: #16dc78;
    font-weight: 300;
    font-family: 'frutiger', Arial, Helvetica, sans-serif;
    padding: 13px 50px;
    border: 0px;
    border-radius: 3px;
}
.participate__form__submit:hover{
    background-color: #07d06b;
}
.shcp{
    font-weight: 500;
}


.site-popup{
    background: #FFFFFF;
    position: relative;
    margin: 0 auto;
    width: 760px;
    padding: 50px 30px 70px;
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    top: 50%;
    left: 50%;
    margin-top: -145px;
    margin-left: -410px;
    display: none;
    position: fixed;
    z-index: 101;
    opacity: 1;
    -webkit-transition: opacity 0.4s;
       -moz-transition: opacity 0.4s;
         -o-transition: opacity 0.4s;
            transition: opacity 0.4s;
}
.site-popup.hide{
    opacity: 0;
}
.popup__fade{
    z-index: 100;
    background: #e2e2e2;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top:0px;
    opacity: 0.7;
    -webkit-transition: opacity 0.4s;
       -moz-transition: opacity 0.4s;
         -o-transition: opacity 0.4s;
            transition: opacity 0.4s;
}
.popup__fade.hide{opacity: 0;}

.popup{
    display: none;
}












/*INNER PAGES*/


.stages-panel{
    width: 100%;
    max-width: 1280px;
    min-width: 980px;
    background: #eee;
    box-shadow: 0px 9px 16px -5px rgba(0,0,0,0.1);
    position: fixed;
    opacity: 0;
    z-index: -1;
    box-sizing: border-box;

    -webkit-transition: top 0.2s, opacity 0.2s;
       -moz-transition: top 0.2s, opacity 0.2s;
         -o-transition: top 0.2s, opacity 0.2s;
            transition: top 0.2s, opacity 0.2s;

    z-index: 5;
    padding: 95px 23px 0px;
}
.stages-panel.show{
    top: 0px !important;
    opacity: 1;
    z-index: 7;
}
.stages-panel__fade{
    opacity: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    background: #f6f6f6;

    -webkit-transition: opacity 0.2s;
       -moz-transition: opacity 0.2s;
         -o-transition: opacity 0.2s;
            transition: opacity 0.2s;

    z-index: 4;
}
.stages-panel__fade.show{
    opacity: 0.75;
}

.stages-panel__close{
    font-size: 18px;
    color: #3d3d3d;
    font-weight: 200;
    position: relative;
    border-bottom: 1px solid #d1d1d1;
    display: inline-block;
    margin-left: 26px;
    line-height: 17px;
    cursor: pointer;
}
.stages-panel__close::before{
    width: 26px;
    position: absolute;
    content: "";
    height: 16px;
    left: -25px;
    top: 1px;
    display: inline-block;
    background-image: url("data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RTRGMDEwRkI3NkZCMTFFNDkyODQ4Q0FCRDBFMkY1MjciIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RTRGMDEwRkM3NkZCMTFFNDkyODQ4Q0FCRDBFMkY1MjciPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpFNEYwMTBGOTc2RkIxMUU0OTI4NDhDQUJEMEUyRjUyNyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpFNEYwMTBGQTc2RkIxMUU0OTI4NDhDQUJEMEUyRjUyNyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PjK4NYgAAACUSURBVHjaYmZgYDAC4t9A/I2BNCACxBrMQOIPEBsD8UcSDBGB6rkJExAFYneoBDGa3aF6UAAxhuDUTIwhBDXjMwSnZmYsBoAC8hNSwHJB2eeA+DW6YkYCLjGCsrFqBgEmPAb8x8Em6AXkeAbZ/JzUdIItwIhOJ/iiiqAhxMQzTkOITiTYDCFFM1ZDjEjUjJJOAAIMAKMdHCnOb5MNAAAAAElFTkSuQmCC");
    background-repeat: no-repeat;
}


.stages-panel__list{
    margin-top: 40px;
    letter-spacing: 2.18em;
    padding-left: 2px;
}
.stages-panel__stage{
    letter-spacing: normal;
    font-size: 15px;
    font-weight: 300;
    color: #3d3d3d;
    display: inline-block;
    width: 100px;
    line-height: 17px;
    vertical-align: top;
    margin-bottom: 40px;
    cursor: default;
    opacity: 0;
    border: 0px;

    -webkit-transition: opacity 0.7s;
       -moz-transition: opacity 0.7s;
         -o-transition: opacity 0.7s;
            transition: opacity 0.7s;
}
.stages-panel__stage *{opacity: 0.6;}
.stages-panel__stage.active *{opacity: 1;}


.stages-panel__stage > div{
    width: 60px;
    height: 51px;
    line-height: 51px;
    color: #d1d1d1;
    text-align: center;
    font-size: 50px;
    font-weight: 300;
    background: #fff;
    border-radius: 2px;
    margin-bottom: 13px;
    position: relative;
    letter-spacing: -5px;
    box-sizing: border-box;
    padding-right: 7px;
    left: -2px;

    -webkit-transition: background-color 0.2s, color 0.2s;
       -moz-transition: background-color 0.2s, color 0.2s;
         -o-transition: background-color 0.2s, color 0.2s;
            transition: background-color 0.2s, color 0.2s;
}

.stages-panel__stage.active{cursor: pointer;}
.stages-panel__stage:hover{color: #3d3d3d;}
/*.stages-panel__stage.current > div{font-weight: 500;}*/

.stages-panel__stage.orange > div{background: #ff7a1a; color: #fff;}
.stages-panel__stage.green > div{background: #41df26; color: #fff; font-weight: 500;}
.stages-panel__stage.yellow > div{background: #fbe424; color: #fff;}
.stages-panel__stage.active:hover > div{background: #3982ff; color: #fff;}
.stages-panel__stage.bold_final > div{ font-weight: 500;}
.stages-panel__stage > b{
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}
.stages-panel__stage > img{
    display: block;
    margin-top: 7px;
    height: 24px;
}



.stage-results__header{
    background-color: #f6f6f6;
    margin-top: 71px;
    padding: 25px;
    text-align: center;
}
.stage-results__menu{
    font-size: 18px;
    font-weight: 200;
    margin: 0px;
    text-align: left;
    padding: 0px;
    display: none;
}
.stage-results__menu li{
    list-style: none;
    display: inline-block;
    margin-right: 20px;
}
.stage-results__menu a{
    color: #3d3d3d;
    border-color: #bbb;
}
.stage-results__stages{
    display: none;
    padding: 0px;
}

.stage-results__title,
.bigRed-title{
    color: #f6181d;
    font-size: 72px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 0px;
}
.stage-results__title span{
    color: #cccccc;
    white-space: nowrap;
}
.stage-results__title img{
    display: inline-block;
    width: 35px;
    vertical-align: middle;
}
.stage-results__dates{
    color: #acacac;
    font-size: 32px;
    text-align: center;
    font-weight: 200;
    margin-top: 15px;
    margin-bottom: 10px;
}
.stage-results__dates span{
    color: #b5b4b4;
    font-weight: 600;
}

.stage-results__rules b{
    font-weight: 600;
}
.stage-results__rules{
    background: #fff;
    border-radius: 4px;
    padding: 30px 50px 50px 50px;
    margin: 75px auto;
}



.stage-weather{
    letter-spacing: 22px;
    margin: 60px 0 50px;
}
.stage-weather__param{
    display: inline-block;
    width: 111px;
    height: 111px;
    background: #fff;
    border-radius: 100px;
}



.stage-stats{
    letter-spacing: 45px;
    margin-bottom: 25px;
}
.stage-stats__part{
    color: #3d3d3d;
    font-weight: 200;
    display: inline-block;
    letter-spacing: normal;
}

.stage-stats__part b{
    font-weight: 500;
}

.stage-ntp,
.stage-ld{
    vertical-align: 2px;
    margin-right: 5px;
    width: 30px;
    height: 30px;
    color: #fff;
    display: inline-block;
    text-transform: uppercase;
    font-size: 10px;
    text-align: center;
    line-height: 31px;
    font-weight: 500;
    border-radius: 30px;
    letter-spacing: 0px;
    cursor: default;
}
.stage-ntp{background: #46cd2f;}
.stage-ld{background: #0d68ff;}

.stage-slope {margin:30px 0 50px 0;color: #3d3d3d;font-weight: 200;}
.stage-slope b { font-weight:500; }


.tabs li{
    cursor: pointer;
}

.groups{
    padding: 20px;
    margin-top: 25px;
    margin-bottom: 0px;
}
.group{
    display: inline-block;
    font-size: 32px;
    margin: 0 1.6%;
    border-bottom: 0px;
    font-weight: 200;
    padding: 13px 16px;
}
.group a{color: #375dff;}
.group a:hover{border-color: #375dff;}
.group.selected{
    position: relative;
    left: -0.15em;
    top: -0.1em;
    background: #fff;
    border-radius: 3px;
}
.group.selected a{
    border-bottom: 0px;
}
.group__name{
    position: relative;
}
.group__name b{
    position: relative;
    z-index: 0;
    visibility: hidden;
    font-weight: 500;
    color: #666;
}
.group__name a{
    position: absolute;
    left: 0px;
    top: 0px;
}
.group.selected .group__name b{visibility: visible;}
.group.selected .group__name a{visibility: hidden;}



.regions{
    padding: 10px 30px 10px 60px;
    -webkit-transition: padding 0.5s; -moz-transition: padding 0.5s; -ms-transition: padding 0.5s; -o-transition: padding 0.5s; transition: padding 0.5s;
}
.region{
    display: inline-block;
    font-size: 16px;
    border-bottom: 0px;
    color: #999;
    text-align: center;
    margin : 20px 4.8% 20px 0;
}
.region img{
    display: inline-block;
    margin-bottom: 7px;
    opacity: 0.4;
}
.region__name{
    position: relative;
}
.region__name b{
    position: relative;
    z-index: 0;
    visibility: hidden;
    font-weight: 500;
    color: #292929;
    left: -0.5px;
    font-family: 'frutiger';
}
.region__name span{
    position: absolute;
    left: 0px;
    top: 0px;
}
.region.selected .region__name b{visibility: visible;}
.region.selected .region__name span{visibility: hidden;}
.region.selected img, .region:hover img{opacity: 1;}












div.members{
    padding: 20px;
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
    -o-transition: height 0.3s;
    transition: height 0.3s;
}
.member{
    display: inline-block;
    margin: 5px;
    width: 220px;
    height: 220px;
    position: absolute;
    left: 0px;
    top: 0px;
    pointer-events: none;
    opacity: 0;
    background: #f6f6f6;
    -webkit-transition: opacity 0.3s;
       -moz-transition: opacity 0.3s;
         -o-transition: opacity 0.3s;
            transition: opacity 0.3s;
}
.member[data-participateid]{
    cursor: pointer;
}
.member[data-participateid]:hover{
    background-color: #DBF0FF;
}
.member[data-participateid]:hover .member__place{
    color: #BFDAEF;
}
.member.bf .member__place{
    color: #bfdaef;
}

.member.visible:hover{
    cursor: pinter;
    z-index: 4;
}

.member.visible{
    z-index: 3;
    pointer-events: all;
    opacity: 1;
    -webkit-transition: opacity 0.3s, transform 0.5s, background-color 0.2s;
       -moz-transition: opacity 0.3s, transform 0.5s, background-color 0.2s;
            transition: opacity 0.3s, transform 0.5s, background-color 0.2s;
}
.member.first{background: #fff566;}
.member.first .member__place{color: #fff; font-size: 75px; right: 6px; top: -7px;}

.member.bf {
    background: #DBF0FF;
}
.member.sf-first .member__place{
    color: #8095FB;
}



.member__photo{
    width: 57px;
    height: 57px;
    border-radius: 50px;
    /*background: #ccc;*/
    margin: 10px 0 0 10px;
}
.member__name{
    font-size: 18px;
    word-spacing: 200px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 0px;
    line-height: 26px;
}
.member__place{
    position: absolute;
    font-size: 40px;
    color: #e4e4e4;
    right: 11px;
    font-weight: 600;
    margin: 0px;
    letter-spacing: -1px;
    top: 2px;
    -webkit-transition: color 0.2s;
       -moz-transition: color 0.2s;
         -o-transition: color 0.2s;
            transition: color 0.2s;
}
.member__group{
    font-size: 15px;
    font-weight: 600;
    margin: 0px;
    line-height: 26px;
    color:#3d3d3d;
}

.member__city, .member__stat{font-size: 15px; font-weight: 200; line-height: 26px; margin: 0px;}
.member .member__city, .member .member__stat, .member .member__name{margin-left: 13px;}
.member__city, .member__stat, .member__name{color: #3d3d3d;}

.member__score{
    font-size: 38px;
    color: #f6181d;
    text-align: right;
    margin: 0px;
    position: absolute;
    bottom: 2px;
    font-weight: 600;
    letter-spacing: -1px;
    right: 9px;
    cursor: default;
}

.member__score-detail{
    position: relative;
    display: inline-block;
    cursor: default;
    line-height: 30px;
    margin-left: 7px;
}

.member__score-detail .stage-ntp,
.member__score-detail .stage-ld{
    vertical-align: 10px;
    margin-right: -2px;
    opacity: 1;
    -webkit-transition: opacity 0.4s;
}

.member__score-detail .stage-ld-hide,
.member__score-detail .stage-ntp-hide{
    position: absolute;
    width: 111px;
    z-index: 2;
    height: 111px;
    border-radius: 100px;
    left: -40px;
    opacity: 0;
    top: -40px;
    -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
    -webkit-transform: scale(0);
    -webkit-transform-origin: center;
    line-height: 21px;
    text-transform: none;
    font-size: 15px;
    font-weight: 200;
    color: #fff;
    text-align: center;
    cursor: default;
}

.stage-ntp-hide{background: #46cd2f;}
.stage-ld-hide{background: #0d68ff;}

.member__score-detail .stage-ld-hide p,
.member__score-detail .stage-ntp-hide p{
    font-weight: 500;
    margin-top: 24px;
    margin-bottom: 0px;
}
.member__score-detail .stage-ld:hover,
.member__score-detail .stage-ntp:hover {
    opacity: 0;
    z-index: 3;
    position: relative;
    cursor: none;
}
.member__score-detail .stage-ld:hover + .stage-ld-hide,
.member__score-detail .stage-ntp:hover + .stage-ntp-hide {
    opacity: 1;
    -webkit-transform: scale(1);
}


.members.table{
    position: absolute;
    padding: 20px 60px;
    width: 100%;
    height: auto;
    opacity: 1;
    color: #696969;
    box-sizing: border-box;
    margin-bottom: 50px;
    -webkit-transition: padding 0.5s, opacity 0.5s;
       -moz-transition: padding 0.5s, opacity 0.5s;
         -o-transition: padding 0.5s, opacity 0.5s;
            transition: padding 0.5s, opacity 0.5s;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    display: -moz-box;
    -moz-box-orient: vertical;
    display: -webkit-flexbox;
    -webkit-flex-direction: row;
}

.members.table.hidden .th{
}
.members.table.hidden{
    opacity: 0;
}

.members.table .th{
    text-align: center;

}
.members.table .th, .members.table .td{display: inline-block; vertical-align: middle;}

.members.table .th{
    font-weight: 300;
    color: #a2a2a2;
    padding-bottom: 20px;
    /*text-align: left;*/
}
.members.table .th.align-left{text-align: left;}
.members.table .th.color-red{color: #f6181d;}



.members.table{
    position: absolute;
    padding: 20px 60px;
    width: 100%;
    height: auto;
    opacity: 1;
    color: #696969;
    box-sizing: border-box;
    z-index: 2;
    margin-bottom: 50px;
    -webkit-transition: padding 0.5s, opacity 0.5s;
    -moz-transition: padding 0.5s, opacity 0.5s;
    transition: padding 0.5s, opacity 0.5s;
    will-change: transform;
}

.members.table .before_final{
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    transition: opacity 0.5s;
}
.members.table .before_final.visible{
    opacity: 1;
}
.title_table {
    text-align: center;
    margin: 30px 0 50px;
    font-size: 32px;
    font-weight: 200;
    color: #515151;
}
.not_final {
    text-align: center;
}

.members.table .before_final .title_table{
    margin-top: 80px;
}

.members.table.hidden .th{
}
.members.table.hidden{
    opacity: 0;
}

.members.table .th{
    text-align: center;

}
.members.table .th, .members.table .td{display: inline-block; vertical-align: middle;}

.members.table .th{
    font-weight: 300;
    color: #a2a2a2;
    padding-bottom: 20px;
    /*text-align: left;*/
}
.members.table .th.align-left{text-align: left;}
.members.table .th.color-red{color: #f6181d;}



.members.table .member{
    margin: 0px;
    display: block;
    width: auto;
    opacity: 0;
    height: 68px;
    overflow: hidden;
    padding: 0px;
    position: relative;
    top: 0px;
    left: 0px;
    background: transparent;
    will-change: opacity;
}
.members.table.stop .member{
    height: 0px;
    display: none;
}

.members.table .member{
    -webkit-transition: opacity 1s, height 0.5s, background-color 0.5s;
    -moz-transition: opacity 1s, height 0.5s, background-color 0.5s;
    -o-transition: opacity 1s, height 0.5s, background-color 0.5s;
    transition: opacity 1s, height 0.5s, background-color 0.5s;
}

.members.table .member-inner{
    position: relative;
    background: #fff;
    border-bottom: 1px solid #eee;
    /*top: -67px;*/
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    -o-transform: rotateX(90deg);
    transform: rotateX(90deg);

    -webkit-transition: top 0.5s, -webkit-transform 0.5s;
    -moz-transition: top 0.5s, -moz-transform 0.5s;
    -o-transition: top 0.5s, -o-transform 0.5s;
    transition: top 0.5s, transform 0.5s;

    -webkit-transform-origin-y: 0%;
    transform-origin-y: 0%;
    -moz-transform-origin-y: 0%;
}

.members.table .member.gold .member-inner{border-color: #f5ea4f;}
.members.table .member.gold .member-inner{background: #fff566;}
.members.table .member.gold.last .member-inner{border: 0px;}
.members.table .member.gold .member__place{color: #eadb0c; font-size: 40px;}



.members.table .member.visible{
    opacity: 1;
}
.members.table.stop .member.visible{
    height: 67px;
    display: block;
}
.members.table .member.visible .member-inner{
    /*top: 0px;*/
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg) translateY(0px);
}



.members.table .member__place-col{width: 70px;}
.members.table .member__avatar{width: 58px;}
.members.table .member__info{width: 23.5%;}
.members.table .member__score-col{width: 10%;}


.member__column{
    text-align: center;
    width: 3%;
}
.member__column.red{
    color: #f6181d;
}
.member__column.empty{
    color: #b6b6b6;
}



.members.table .member__photo{
    width: 45px;
    height: 45px;
    margin: 11px 13px 11px 0px;
    display: block;
}
.members.table .td.member__place{
    font-size: 24px;
    color: #ddd;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -1px;
    position: static;
    text-align: center;
    width: 70px;
}
.members.table .member__info{
    line-height: 21px;
    white-space: nowrap;
    -webkit-transition: width 0.5s;
    -moz-transition: width 0.5s;
    -o-transition: width 0.5s;
    transition: width 0.5s;
}

.members.table .member__name, .members.table .member__city, .members.table .member__stat{
    margin: 0px;
    display: inline;
    line-height: 20px;
}
.members.table .member__name{
    width: auto;
    word-spacing: normal;
}
.members.table .member__city{width: auto;}
.members.table .member__stat{width: 60px;}

.members.table .td.member__score{
    font-size: 40px;
    color: #f6181d;
    line-height: normal;
    text-align: center;
    font-weight: 500;
    letter-spacing: -2px;
    margin: 0px;
    width: 10%;
    position: static;
}




.participated_members{
    padding:  50px 0px 0px;
}


.members.static{
    position: relative;
    margin-bottom: 0px;
    margin-top: 50px;
    padding-bottom: 0px;
    box-sizing: border-box;
}

.members.static .member{
    background: none;
    width: 187px;
}
.members.static .member__city,
.members.static .member__stat,
.members.static .member__name{margin-left: 0px;}
.members.static .member__photo{margin-left: -2px;}

.hidden .results_banner{
    opacity: 0;
    padding: 0 20px 0;
}
.results_banner{
    background-color: #f6f6f6;
    background-repeat: repeat-x;
    overflow: hidden;
    position: fixed;
    font-size: 27px;
    font-weight: 200;
    line-height: 34px;
    text-align: center;
    height: 254px;
    color: #3d3d3d;
    padding: 0px 20px;
    display: block;
    max-width: 1160px;
    box-sizing: border-box;
    margin: 28px 0;
    opacity: 0;
    border: 0px;
    -webkit-transition: height 0.4s, margin 0.4s, padding 0.4s, opacity 0.4s;
    -moz-transition: height 0.9s, margin 0.9s, padding 0.9s, opacity 0.9s;
    -o-transition: height 0.9s, margin 0.9s, padding 0.9s, opacity 0.9s;
    will-change: transform;
}
.results_banner.golftour{
    background-image: url(../img/golftour.jpg);
    color: #fff;
}
.results_banner.visible{
    height: 254px;
    opacity: 1;
}
.results_banner.relative{position: relative;}
.results_banner:hover{color: #3d3d3d;}

/*.results_banner.golftour.visible{padding: 60px 20px 45px;}*/
.results_banner.golftour:hover{color: #fff;}

.results_banner.closed,
.results_banner.golftour.closed{
    padding: 0 20px 0;
    height: 0px;
    opacity: 0;
    margin: 0;
}
.results_banner .content{
    display: inline-block;
    text-align: left;
    margin-right: 15%;
    opacity: 1;
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s; -moz-transition: opacity 0.5s, -moz-transform 0.5s; transition: opacity 0.5s, transform 0.5s;
    transform: translateY(0px);
}

.results_banner img{
    opacity: 1;
    vertical-align: top;
    display: inline-block;
    margin-top: 15px;
    margin-right: 50px;
    transform: translateY(0px);
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s; -moz-transition: opacity 0.5s, -moz-transform 0.5s; transition: opacity 0.5s, transform 0.5s;
}
.results_banner.golftour img{margin-top: 20px;}

.results_banner.closed img,
.results_banner.closed .content{
    opacity: 0;
}
.results_banner b{
    font-weight: 500;
}
.results_banner small{
    display: block;
    font-size: 16px;
    line-height: 22px;
    margin-top: 18px;
}
.results_banner::before,
.results_banner::after{
    height: 5px;
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    bottom: 0px;
    left: 0px;
}
.results_banner::before{
    bottom: auto;
    top: 0px;
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
}
.results_banner::after, .results_banner::before{
    background-image: url("data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAFCAYAAABFA8wzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QUUxNjgwNTdBMTZEMTFFNEEzQzZEQzRDODY3NjUxMDYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QUUxNjgwNThBMTZEMTFFNEEzQzZEQzRDODY3NjUxMDYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBRTE2ODA1NUExNkQxMUU0QTNDNkRDNEM4Njc2NTEwNiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBRTE2ODA1NkExNkQxMUU0QTNDNkRDNEM4Njc2NTEwNiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PtOTwjIAAABNSURBVHjaYvj//z8DkZgNiPOA+DgQf4bi41AxNpg6Yg2TBuLz/3GD81A1DMS6DJ9hMHABiNmJMTD3P/EglxHsTPzgOBBbMBAHTgAEGADt2xSD5gjq8AAAAABJRU5ErkJggg==");
}

.table_banner .close,
.results_banner .close{
    position: absolute;
    opacity: 0.4;
    right: 16px;
    top: 25px;
    width: 26px;
    height: 26px;
}
.table_banner .close::after,
.table_banner .close::before,
.results_banner .close::after,
.results_banner .close::before{
    content: "";
    display: block;
    height: 35px;
    width: 2px;
    position: absolute;
    top: -5px;
    left: 12px;
    background-color: #bbb;
}

.table_banner .close::after,
.results_banner .close::after{ -webkit-transform: rotate(-45deg); }
.table_banner .close::before,
.results_banner .close::before{ -webkit-transform: rotate(45deg); }

.table_banner .close:hover,
.results_banner .close:hover{opacity: 1;}

.results_banner.golftour .close{opacity: 1;}
.results_banner.golftour .close::after,
.results_banner.golftour .close::before{
    background: #fff;
}
.results_banner.golftour .close:hover::after,
.results_banner.golftour .close:hover::before{background-color: #fff566;}



.results_banner.visible .content,
.results_banner.visible img{transform: translateY(60px);}

.results_banner.strawberry.visible .content,
.results_banner.strawberry.visible img{transform: translateY(35px);}

.results_banner.sportpalace.visible .content,
.results_banner.sportpalace.visible img{transform: translateY(75px);}


.results_banner.sportpalace img{
    margin-top: 20px;
}



.user-info-popup{
    padding: 15px;
    font-size: 15px;
    width: 653px;
    font-weight: 200;
    /*margin-left: -350px;*/
    background-color: #f6f6f6;
    box-shadow: 0 0 40px rgba(0,0,0, 0.1);
    text-align: left;
    margin-left: -341px;
}
.user-info-popup b{
    font-weight: 500;
}
.user-info-header{
    font-size: 15px;
}
.user-info-header span{margin-right: 20px;}

.user-info-results{
    margin: 20px 0px 8px;
    padding: 0px;
    letter-spacing: 5px;
}
.user-info-results > li{
    margin-left: 7px;
    display: inline-block;
    width: 65px;
    letter-spacing: normal;
    height: 98px;
    background: #fff;
    position: relative;
    margin-bottom: 10px;
}
.user-info-results > li > span{display: block; position: absolute;}

.user-info__hole,
.user-info__par,
.user-info__str{
    left: 7px;
}
.user-info__hole{
    color: #616161;
    font-size: 18px;
    top: 7px;
    line-height: 18px;
}
.user-info__par{
    color: #a6a6a6;
    font-size: 12px;
    top: 27px;
    line-height: 12px;
}
.user-info__str{
    color: #a6a6a6;
    font-size: 24px;
    line-height: 24px;
    top: 70px;
}

.user-info__hcp,
.user-info__add,
.user-info__sf
{right: 7px;}

.user-info__hcp{
    top: 8px;
    font-size: 12px;
    color: #a6a6a6;
    line-height: 12px;
}
.user-info__add{
    top: 27px;
    color: #46cd2f;
    font-size: 12px;
    line-height: 12px;
    font-weight: 300;
}
.user-info__sf{
    top: 70px;
    color: #f6181d;
    font-size: 24px;
    line-height: 24px;
    font-weight: 500;
}

.user-info-footer{
    font-weight: 300;
    font-size: 40px;
    margin-top: 30px;
    line-height: 35px;
}
.user-info-stroke{color: #c5c5c5;}
.user-info-stableford{
    color: #f6181d;
    float: right;
}


.letter-spacing_-5{
    letter-spacing: -5px;
}



.slide__td, .slider h4{
    font-weight: 200;
}
.slide b{
    font-weight: 300;
}

.slider:after {
    height: 264px;
    width: 276px;
    display: inline-block;
    content:'';
    background-color: white;
    margin-left: 2px;
}
.slider {
    white-space: nowrap;
}
.slider[position="both"] .slider__tint {
    display: none;
}


@media (max-width: 1450px) {
    .commitee{
        left: -180px;
    }
    .commitee::after{
        left: 79%;
    }
}


.bigRed-title{
    margin-bottom: 60px;
    margin-top: 190px;
}
.credits__text{
    font-size: 21px;
    font-weight: 200;
    line-height: 31px;
    margin: 0 auto 120px;
    max-width: 680px;
    color: #666;
}
.credits__name{
    font-size: 40px;
    font-weight: 200;
    color: #222222;
    line-height: 56px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    position: relative;
    margin-top: 65px;
}
.credits__name::after{
    display: block;
    content: "";
    position: absolute;
    bottom: 0px;
    width: 210px;
    border-bottom: 2px solid #f2f2f2;
}
.credits__list{
    padding-top: 150px;
}













