/**** Default Tool Tip ****/
.default_tool_tip_background {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
    z-index: 1000000;
    visibility: hidden;
    opacity: 0;
    transition: ease all 0.5s;
}


.default_tool_tip .tool_tip_fixed_container {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: ease all 0.5s;
    z-index: 100000000000;

    overflow-y: scroll !important;

    padding-top: 100px;
    padding-bottom: 100px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    height: 100vh;
}
.default_tool_tip .tool_tip_fixed_container.open {
    opacity: 1;
    transition: ease all 0.5s;
    visibility: visible;
}


.default_tool_tip .default_tool_tip_modal {
    transition: ease all 0.5s;
    z-index: 1000001;
    width: 750px;
    max-width: calc(100% - 30px);
    background-color: white;
    visibility: hidden;
    opacity: 0;
    position: relative;
}

.default_tool_tip .default_tool_tip_modal .heading_section {
    padding: 30px;
    padding-right: 55px;
    border-bottom: 1px solid #707070;
    position: relative;
}
.default_tool_tip .default_tool_tip_modal .heading_section h5 {
    margin-bottom: 0;
    line-height: 1;
    margin-top: 4px;
    padding-right: 25px;
}

.default_tool_tip .default_tool_tip_modal .text_section {
    padding: 40px 30px;
}

.default_tool_tip .default_tool_tip_modal .text_section * {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
}

.default_tool_tip .default_tool_tip_modal .text_section p:last-of-type {
    margin-bottom: 0;
}

.default_tool_tip .default_tool_tip_modal .button_section {
    padding: 23px;
    border-top: 1px solid #707070;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.default_tool_tip .default_tool_tip_modal button.primary {
    margin: 0;
}

.default_tool_tip .default_tool_tip_modal button.primary::after {
    display: none;
}

.default_tool_tip .default_tool_tip_modal button.close {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 23px;
    height: 19px;
    width: 19px;
    cursor: pointer;
    font-size: 0;
    padding: 0;
    border: 0;
    outline: none !important;
    transition: ease all .4s;
    opacity: 1;

    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('assets/close.svg');
}

/* Hide scrollbar for Chrome, Safari and Opera */
.default_tool_tip .tool_tip_fixed_container::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.default_tool_tip .tool_tip_fixed_container {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

@media(max-width: 991.98px) {
    /* Hide scrollbar for Chrome, Safari and Opera */
    .default_tool_tip .tool_tip_fixed_container::-webkit-scrollbar {
        display: none;
    }

    /* Hide scrollbar for IE, Edge and Firefox */
    .default_tool_tip .tool_tip_fixed_container {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
}

@media(max-width: 767.98px) {
    .default_tool_tip .default_tool_tip_modal .heading_section,
    .default_tool_tip .default_tool_tip_modal .text_section,
    .default_tool_tip .default_tool_tip_modal .button_section {
        padding: 18px;
        padding-top: 23px;
        padding-bottom: 23px;
    }

    .default_tool_tip .default_tool_tip_modal .heading_section {
        padding-top: 24px;
        padding-bottom: 27px;
    }

    .default_tool_tip .default_tool_tip_modal .button_section {
        padding-top: 12px;
        padding-bottom: 12px;
    }
}

@media(max-width: 575px) {
    .default_tool_tip .default_tool_tip_modal button.close {
        height: 12px;
        width: 12px;
    }

    .default_tool_tip .tool_tip_fixed_container {
        height: 100vh;
    }
}


/*** Opens ***/
.default_tool_tip.open .default_tool_tip_modal.open,
.default_tool_tip.open .default_tool_tip_background {
    visibility: visible;
    opacity: 1;
}