﻿@charset "UTF-8";

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-style: normal;
}

.container .top-bar-wrapper {
    border-bottom: 1px solid #E8E8E8;
}

    .container .top-bar-wrapper .top-bar {
        max-width: 1200px;
        width: 100%;
        margin-inline: auto;
        height: 68px;
        display: flex;
        align-items: center;
        position: relative;
    }

        .container .top-bar-wrapper .top-bar .mobile-title {
            display: none;
            font-weight: 500;
            font-size: 17px;
            color: #FFFFFF;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .container .top-bar-wrapper .top-bar .logo {
            cursor: pointer;
        }

        .container .top-bar-wrapper .top-bar input[id=search-icon] {
            display: none;
        }

        .container .top-bar-wrapper .top-bar .back-icon {
            display: none;
        }

        .container .top-bar-wrapper .top-bar .search-box {
            height: 42px;
            width: 473px;
            display: flex;
            align-items: center;
            border: 1px solid #EEEEEE;
            border-radius: 4px;
            padding-left: 17px;
            padding-right: 8.34px;
            gap: 12px;
            margin-left: 68px;
        }

            .container .top-bar-wrapper .top-bar .search-box .close-icon {
                display: none;
                cursor: pointer;
                position: relative;
                width: 20px;
                height: 20px;
            }

                .container .top-bar-wrapper .top-bar .search-box .close-icon:after {
                    content: "×";
                    position: absolute;
                    color: white;
                    font-size: 20px;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                }

            .container .top-bar-wrapper .top-bar .search-box img {
                cursor: pointer;
            }

            .container .top-bar-wrapper .top-bar .search-box input[type=text] {
                width: 100%;
                border: none;
                font-weight: 400;
                font-size: 16px;
            }

                .container .top-bar-wrapper .top-bar .search-box input[type=text]:focus {
                    outline: none;
                }

                .container .top-bar-wrapper .top-bar .search-box input[type=text]::placeholder {
                    color: #8E8E93;
                }

        .container .top-bar-wrapper .top-bar .button {
            font-weight: 500;
            font-size: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2A42A7;
            width: 169px;
            height: 42px;
            cursor: pointer;
            border: 1px solid #00104F;
            border-radius: 4px;
            margin-left: auto;
        }

            .container .top-bar-wrapper .top-bar .button:hover {
                background-color: rgba(0, 0, 0, 0.027);
            }

.container .page-not-found-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 70px);
}
.not-found-image{
    height:168px;
}
.container .page-not-found-wrapper .big-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 52px;
    color: #28464D;
    margin-top: 18px;
    margin-bottom: 5px;
    text-align: center;
}

    .container .page-not-found-wrapper .sub-title {
        font-weight: 400;
        font-size: 18px;
        line-height: 30px;
        color: #436972;
        width: 488px;
        margin-bottom: 48px;
        text-align: center;
    }

    .container .page-not-found-wrapper .back-to-home {
        cursor: pointer;
        justify-content: center;
        background: linear-gradient(206.57deg, var(--primary) 16.67%, var(--secondary) 100%);
        border-radius: 100vw;
        height: 48px;
        display: flex;
        align-items: center;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        gap: 6.95px;
        width: 333px;
        color: #FFFFFF;
    }

        .container .page-not-found-wrapper .back-to-home:hover {
            background: #34499D;
        }

/*# sourceMappingURL=style-page-not-found.css.map */
