.extension {
    position: fixed;
    bottom: 200px;
    right: 0px;
    z-index: 20;
}

.extension_image {
    position: relative;
    width: 50px;
    height: 50px;
    left: -2px;
    right: 10px;
    border: 2px solid green;
    border-radius: 50px;
    padding: 5px;
    cursor: pointer;
}

.extension_button {
    outline: none !important;
    border-radius: 50%;
    background-color: transparent;
    width: 65px;
    height: 65px;
    border: none;
}

.extension_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.extension_item {
    display: flex;
    justify-content: center;
    padding: 0 0 12px;
}

.extension_item-medium {
    outline: none !important;
    border-radius: 50%;
    background: #fff;
    box-shadow:
        rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
        rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    width: 44px;
    height: 44px;
    border: none;
}

.copyboarding {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 10000;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    gap: 12px;
}

.copyboarding_des-background {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0 20px;
    border-radius: 12px;
    align-items: center;
}

.copyboarding_des {
    margin-top: 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
}

.copyboarding_des2 {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
    justify-content: center;
}

.copyboarding_des-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    border: 1px solid #ced4da;
    padding: 4px 12px;
    border-radius: 6px;
    outline: none;
}

.copyboarding_des-button:focus {
    outline: none;
}

.copyboarding_container {
    width: 75%;
    overflow: auto;
    height: 100%;
}

.copyboarding_close {
    position: absolute;
    top: 20px;
    right: 20px;
    outline: none !important;
    border-radius: 50%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    width: 50px;
    height: 50px;
}

.copyboarding_close:hover {
    background-color: #eee;
}

.animation_screenshot {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000000;
    animation: animation_screenshot 1.7s ease-in-out forwards;
}

@keyframes animation_screenshot {
    0% {
        backdrop-filter: blur(0px);
    }

    35% {
        backdrop-filter: blur(10px);
    }

    70% {
        backdrop-filter: blur(10px);
    }

    100% {
        backdrop-filter: blur(0px);
        display: none;
    }
}