﻿#LaptopShowImg img {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    box-shadow: 5px 5px 7px 3px gray;
    transition: 0.5s;
    cursor: pointer;
}

    #LaptopShowImg img:hover {
        transition: 0.5s;
        box-shadow: 5px 5px 7px 3px black;
    }


#ImgPick img {
    border-radius: 25px;
    box-shadow: 0 0 10px 3px black;
    margin-bottom: 20px;
    margin-top: 20px;
}

#ImgPick a {
    color: black;
    height: 40px;
    margin-bottom: 10px;
    margin-top: 120px;
}

    #ImgPick a:hover {
        -webkit-transition-duration: 500ms;
        -moz-transition-duration: 500ms;
        -o-transition-duration: 500ms;
        transition-duration: 500ms;
        background-color: darkcyan;
    }

#DeviceDetails {
    margin-bottom: 50px;
    margin-top: 50px;
    font-size: 15px;
    font-family: Yekan;
}

    #DeviceDetails input {
        border-radius: 15px 2px 15px 2px;
        text-align: center;
        box-shadow: 0 0;
        transition: 0.2s;
    }

        #DeviceDetails input:hover {
            border-radius: 2px 15px 2px 15px;
            box-shadow: 0 0 10px 3px gray;
            transition: 0.5s;
        }

    #DeviceDetails select {
        border-radius: 15px 2px 15px 2px;
        box-shadow: 0 0;
        transition: 0.2s;
    }

        #DeviceDetails select:hover {
            border-radius: 2px 15px 2px 15px;
            box-shadow: 0 0 10px 3px gray;
            transition: 0.5s;
        }

    #DeviceDetails textarea {
    }



.file {
    display: block;
    position: relative;
    width: 100%;
    height: 50px;
    border-radius: 15px;
    background-color: rgb(50,150,70);
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    font-family: Vazir;
    margin-top: 20px;
    transition-duration: 0.5s;
}

    .file:hover {
        transition: 0.5s;
        background-color: darkcyan;
        border-radius: 25px;
    }

#DeviceKeywords {
    margin-bottom: 50px;
    margin-top: 50px;
    font-size: 15px;
    font-family: Yekan;
}

    #DeviceKeywords input {
        border-radius: 15px 2px 15px 2px;
        text-align: center;
        box-shadow: 0 0;
        transition: 0.2s;
    }

        #DeviceKeywords input:hover {
            border-radius: 2px 15px 2px 15px;
            box-shadow: 0 0 10px 3px gray;
            transition: 0.5s;
        }

.textareadevice {
    border-radius: 15px;
    box-shadow: 0 0 10px 3px lightgray;
    transition: 0.5s;
}

    .textareadevice:hover {
        transition: 0.5s;
        box-shadow: 0 0 10px 3px gray;
        border-radius: 20px;
    }

#MetaTagBtn button {
    height: 60px;
}

.ShowAllHeader {
    background-color: #2d2d30;
    font-family: Yekan;
    font-size: 15px;
    height: 30px;
    text-align: center;
    align-items: center;
    border-radius: 5px 5px 0 0;
}

    .ShowAllHeader span {
        color: aliceblue;
    }

    .ShowAllHeader a {
        list-style: none;
        text-decoration: none;
        color: #ffffff;
    }

#ShowAll img {
    border-radius: 0 0 5px 5px;
    height: 200px;
}

#ShowAll p {
    font-size: 14px;
}

#ShowAllFilter {
    font-family: Yekan;
    font-size: 15px;
    text-align: center;
    align-items: center;
}

    #ShowAllFilter select {
        background-color: #fff;
        height: 50px;
        text-align: center;
        align-items: center;
        transition: 0.3s;
        border: 1px solid lightgray;
        border-radius: 8px;
    }

        #ShowAllFilter select:hover {
            transition: 0.3s;
            border-radius: 8px 8px 0 0;
            border: 1px solid black;
            background-color: white;
        }

    #ShowAllFilter input {
        border: 1px solid lightgray;
        height: 50px;
        text-align: center;
        align-items: center;
        border-radius: 8px;
        transition: 0.5s;
    }

        #ShowAllFilter input:hover {
            transition: 0.5s;
            border: 1px solid black;
        }

#ShowImgMaster img {
    border-radius: 20px;
    box-shadow: 5px 5px 10px 3px black;
    border: 5px solid black;
    width: 90%;
}

#ShowImg img {
    margin-bottom: 10px;
    border-radius: 20px;
    height: 150px;
    width: 80%;
    box-shadow: 0 0 10px 3px gray;
    border: 3px solid black;
}

.hovertext {
    position: relative;
    border-bottom: 1px dotted black;
}

    .hovertext:before {
        content: attr(data-hover);
        visibility: hidden;
        opacity: 0;
        width: 200px;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 5px;
        padding: 5px 0;
        transition: opacity 1s ease-in-out;
        position: absolute;
        z-index: 1;
        left: 0;
        top: 110%;
    }

    .hovertext:hover:before {
        opacity: 1;
        visibility: visible;
    }
