/*---------------------------------------------------------------------------------
	Theme Name: Davis Child
    Template: davis
    Text Domain: davis
	Version: 1.14
	Description: Added play/pause button for Comet
	Tags: blog, one-column, custom-menu, featured-images, post-formats, threaded-comments, translation-ready
	Author: Anders Norén
	Author URI: http://www.andersnoren.se
	License: GNU General Public License version 2.0
	License URI: http://www.gnu.org/licenses/gpl-2.0.html
	
	All files, unless otherwise stated, are released under the GNU General Public License
	version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)

-----------------------------------------------------------------------------------

	0.	CSS Reset
	1.	Document Setup
	2.  Structure
	3.	Header
	4.	Blog
	5.  Post Content
	6.	Comments
	7.	Pagination
	8.	Footer
	9.  Media Queries

----------------------------------------------------------------------------------- */


.control-bt {
    position: absolute;
    height: 45px;
    width: 225px;
    bottom: 10px;
    right: 2vw;
    background: none;
    border: none;
    z-index: 1000;
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
}
.control-bt svg {
    width: 200px;
    height: 45px;
    fill: #fff;
    margin-top: -0.1rem;
}
.control-bt svg path {
    fill: #fff;
}
.control-bt svg:first-of-type {
    margin-left: 0.1rem;
}
@media (max-width: 1199.98px) and (hover: none) {
    .control-bt svg {
        margin-left: -11px;
    }
    .control-bt svg:first-of-type {
        margin-left: -9px;
    }
}
.control-bt.pause svg:first-of-type,
.control-bt.play svg:last-of-type {
    display: none;
}
@media (max-width: 991.98px) {
    .control-bt {
        display: none;
    }
}