﻿@font-face {
    font-family: 'Muli';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/muli/v29/7Aulp_0qiz-aVz7u3PJLcUMYOFnOkEk30e0.ttf) format('truetype');
}

.tooltipwrapper h3 {
    font-size: 22px;
    font-weight: 500;
    color: #2c2c2c;
}

.tooltipwrapper a {
    text-decoration: none;
    color: #3476ca;
}

    .tooltipwrapper a:hover {
        color: #6cb5f3;
    }

.open {
    position: fixed;
    width: 100px;
    height: 40px;
    left: 50%;
    top: -1000px;
    margin-left: -80px;
    margin-top: -30px;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 6px;
    padding: 10px 30px;
    color: #444;
    transition: all ease-out 0.6s;
}

    .open:hover {
        border: 1px solid #aaa;
        box-shadow: 0 0 8px #ccc inset;
        transition: all ease-out 0.6s;
    }

.tooltipwrapper {
    z-index: 9999;
    position: fixed;
    width: 350px;
    height: 200px;
    /* left: 50%;
    top: 50%;
    margin-top: -119px;
    margin-left: -200px;*/
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.4);
    transition: all .10s ease;
}

.tooltipArrowLeft:before {
    content: "";
    position: absolute;
    left: -14px;
    top: 28px;
    border-style: solid;
    border-width: 10px 14px 10px 0;
    border-color: rgba(0, 0, 0, 0) #fff rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}

.tooltipArrowTop:before {
    content: "";
    position: absolute;
    left: 60px;
    top: -10px;
    border-style: solid;
    border-width: 0px 14px 10px 14px;
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #fff rgba(0, 0, 0, 0);
}

.tooltipArrowRight:before {
    content: "";
    position: absolute;
    left: 100%;
    top: 28px;
    border-style: solid;
    border-width: 10px 14px 10px 10px;
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #fff;
}

.tooltipArrowBottom:before {
    content: "";
    position: absolute;
    left: 60px;
    top: 100%;
    border-style: solid;
    border-width: 10px 10px 14px 010px;
    border-color: #333333 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}

.tooltipwrapper .wrapper-inner {
    padding: 20px 25px;
}

.tooltipwrapper p {
   
    font-size: 14px;
    color: #000;
    font-weight: 400;
    line-height: normal;
    float: left;
    margin: 0;
}

.tooltipwrapper .bottom {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    bottom: 0;
    position: absolute;
}

    .tooltipwrapper .bottom .step {
        flex: 3;
        -webkit-flex: 3;
        -ms-flex: 3;
        width: 100%;
        height: 42px;
        background-color: #000000;
        border-bottom-left-radius: 6px;
        display: flex;
    }

        .tooltipwrapper .bottom .step span {
            flex: 1;
            -webkit-flex: 1;
            -ms-flex: 1;
            line-height: 54px;
            color: #fff;
            margin-left: 25px;
            font-size: 18px;
        }

        .tooltipwrapper .bottom .step ul {
            flex: 2;
            -webkit-flex: 2;
            -ms-flex: 2;
            list-style: none;
            height: 10px;
            margin: 16px 0;
            padding-left: 15px;
        }

            .tooltipwrapper .bottom .step ul li {
                position: relative;
                height: 12px;
                width: 12px;
                margin: 0 10px;
                float: left;
                border-radius: 50%;
                background: none;
                border: 1px solid #535560;
            }

                .tooltipwrapper .bottom .step ul li:first-child:before {
                    width: 0;
                }

                .tooltipwrapper .bottom .step ul li:before {
                    content: "";
                    position: absolute;
                    width: 20px;
                    border-top: 1px solid #535560;
                    left: -21px;
                    top: 4px;
                }

                .tooltipwrapper .bottom .step ul li.true {
                    background-color: #7a7d86;
                }

                .tooltipwrapper .bottom .step ul li.active {
                    background-color: #fff;
                    box-shadow: 0 0 6px rgba(255, 255, 255, 0.78);
                }

.tooltipclose {
    cursor: pointer;
}

    .tooltipclose:before,
    .tooltipclose:after {
        content: "";
        position: absolute;
        height: 13px;
        width: 13px;
        top: 26px;
        right: 32px;
        border-top: 2px solid #7c7c7c;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .tooltipclose:before {
        right: 40px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

.tooltipnext {
    flex: 1;
    background-color: #027bff;
    border: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    font-weight: 500;
    border-bottom-right-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

    .tooltipnext:hover {
        background-color: #6ba5d6;
        transition: all 0.3s;
    }

    .tooltipnext:active {
        background-color: #5f8aaf;
    }

.slider-container {
    width: 350px;
    padding: 20px;
    overflow: hidden;
}
/*
.slider-turn {
    width: 10000px;
}
*/

.guide-active:after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '.';
    background: #00000094;
    left: 0;
    z-index: 999;
    top: 0;
}

.active-input {
    position: relative;
    z-index: 999;
    /* background: transparent; */
    color: #fff;
}
