/* Floating airplane launcher */

#cx3-launcher{
position:fixed;
bottom:25px;
right:25px;

width:60px;
height:60px;

background:#007aff;
color:white;

font-size:26px;

display:flex;
align-items:center;
justify-content:center;

border-radius:50%;
cursor:pointer;

z-index:99999;

box-shadow:0 10px 25px rgba(0,0,0,.4);
}

/* Calculator window */

#cx3-window-wrapper{
position:fixed;
bottom:100px;
right:25px;

width:340px;
height:500px;

background:transparent;

border-radius:12px;
overflow:hidden;

display:none;

z-index:99999;

box-shadow:0 25px 60px rgba(0,0,0,.6);
}

/* Header */

#cx3-window-header{
background:#111;
color:white;

padding:10px;

cursor:move;

display:flex;
justify-content:space-between;
align-items:center;

font-size:14px;

border-top-left-radius:12px;
border-top-right-radius:12px;
}

/* Close button */

#cx3-close{
cursor:pointer;
font-weight:bold;
font-size:18px;
}

/* Iframe container */

#cx3-frame{
width:100%;
height:calc(100% - 40px);

border:none;

background:transparent;

overflow:hidden;
}

/* Prevent iframe scrollbars */

#cx3-frame html,
#cx3-frame body{
overflow:hidden;
}

/* Mobile responsive */

@media(max-width:768px){

#cx3-window-wrapper{

right:10px;
bottom:90px;

width:92vw;
height:70vh;

}

}
