﻿/*Tekli container*/
/*
.editor-one-container{
    width:100%;
    height:auto;
    margin-top:60px;
    margin-bottom:60px;
}

.editor-one-container img{
    width:100%;
    height:325px;
    object-fit:cover;
    border-radius:6px;
}
*/
/*İkili container*/
/*
ul, ol {
    list-style: none;
    padding: 0;
}
.editor-two-container {
    width: 100%;
    height: 325px;
}
.editor-two-container ul{
    width:100%;
    height:325px;
}

    li:nth-child(1) {
        width: calc((100% / 2) - 300px);
        height:325px;
        display: flex;
        margin-right: 25px;
        justify-content: center;
        align-items: flex-start;
    }


    li:nth-child(2) {
        width: calc((100% / 2) - 300px);
        height: 325px;
        display: flex;
        margin-left: 25px;
        justify-content: center;
        align-items: flex-end;
    }
*/
/*Üçlü container*/
.popover__title {
    font-size: 24px;
    line-height: 36px;
    text-decoration: none;
    color: rgb(228, 68, 68);
    text-align: center;
    padding: 15px 0;
}

.popover__wrapper {
    position: relative;
    margin-top: 1.5rem;
    display: inline-block;
}

.popover__content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: -150px;
    transform: translate(0, 10px);
    background-color: #bfbfbf;
    padding: 1.5rem;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    width: auto;
}

.popover__content:before {
    position: absolute;
    z-index: -1;
    content: "";
    right: calc(50% - 10px);
    top: -8px;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #bfbfbf transparent;
    transition-duration: 0.3s;
    transition-property: transform;
}

.popover__wrapper:hover .popover__content {
    z-index: 10;
    opacity: 1;
    visibility: visible;
    transform: translate(0, -20px);
    transition: all 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97);
}

.popover__message {
    background-color:red;
    text-align: center;
}
