@charset "utf-8";
/* CSS Document */

/* ===== MOBILE MODE (Default) ===== */
.top {
    width: 100%;    height: 50px;
	display:none;
}

.topbox {
    width: 100%;
    height: inherit;
    margin: auto;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
}

.logo {
    width: 40px;
    height: auto;
    flex-shrink: 0;
}

.textlogo {
    color: #fff;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-left: 5px;
    flex-grow: 1;
	padding-left: 16px;
}

.textlogoth {
    font-size: 20px;
    line-height: 1.2;
}

.textlogoen {
    font-size: 11px;
    line-height: 1.2;
}



/* 2x2 Grid Layout for Mobile */
.topright {
    width: 50px;
    height: 50px;
    display: grid;
    grid-template-columns: 25px 25px;
    grid-template-rows: 25px 25px;
    gap: 0;
    flex-shrink: 0;
	//background:blue;
}

.iconboxtop,
.iconboxbottom {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon {
    width: 20px;
    height: 20px;
}

/* ===== PC MODE ===== */
@media (min-width: 800px) {
    .top {
        height: 70px;
		display: block;
		//position: fixed;
    }
    
    .topbox {
        padding: 5px 10px;
    }
    
    .logo {
        width: 60px;
    }
    
    .textlogo {
		color: #053b50;
		display: flex;
		flex-direction: column;
		text-align: left;
		padding-left: 5px;
		flex-grow: 1;
        padding-left: 10px;
    }
    
    .textlogoth {
        font-size: 20px;
    }
    
    .textlogoen {
        font-size: 13px;
    }
    
    /* 4x1 Layout for PC - Icons at bottom right */
    .topright {
        width: 130px;
        height: 70px;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        gap: 5px;
        padding: 10px 0px 0px 0px;
		//background:#F00;
    }
    
    .iconboxtop,
    .iconboxbottom {
        width: 35px;
        height: 35px;
		//background:#F00;
    }
    
    .icon {
        width: 30px;
        height: 30px;
    }
}

@media (min-width: 1200px) {
    .topright {
        //width: 130px;
		//background:blue;
        //gap: 8px;
    }
    
    .iconboxtop,
    .iconboxbottom {
        width: 35px;
        height: 35px;
    }
    
    .icon {
        width: 30px;
        height: 30px;
    }
}